irulkenzei/faster-whisper-transcribe
Public
89
runs
Run irulkenzei/faster-whisper-transcribe with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| audio |
string
|
File audio untuk ditranskripsi
|
|
| language |
string
|
|
Kode bahasa (mis. 'id', 'en'). Kosongkan untuk auto-detect.
|
| model_size |
None
|
base
|
Ukuran model whisper (semakin besar semakin akurat tapi lebih lambat)
|
| vad_filter |
boolean
|
True
|
Buang bagian hening/noise otomatis sebelum transkripsi
|
{
"type": "object",
"title": "Input",
"required": [
"audio"
],
"properties": {
"audio": {
"type": "string",
"title": "Audio",
"format": "uri",
"x-order": 0,
"description": "File audio untuk ditranskripsi"
},
"language": {
"type": "string",
"title": "Language",
"default": "",
"x-order": 1,
"description": "Kode bahasa (mis. 'id', 'en'). Kosongkan untuk auto-detect."
},
"model_size": {
"enum": [
"tiny",
"base",
"small",
"medium",
"large-v3"
],
"type": "string",
"title": "model_size",
"description": "Ukuran model whisper (semakin besar semakin akurat tapi lebih lambat)",
"default": "base",
"x-order": 2
},
"vad_filter": {
"type": "boolean",
"title": "Vad Filter",
"default": true,
"x-order": 3,
"description": "Buang bagian hening/noise otomatis sebelum transkripsi"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"required": [
"text",
"language",
"language_probability",
"segments"
],
"properties": {
"text": {
"type": "string",
"title": "Text"
},
"language": {
"type": "string",
"title": "Language"
},
"segments": {
"type": "array",
"items": {
"type": "object",
"title": "Segment",
"required": [
"start",
"end",
"text"
],
"properties": {
"end": {
"type": "number",
"title": "End"
},
"text": {
"type": "string",
"title": "Text"
},
"start": {
"type": "number",
"title": "Start"
}
}
},
"title": "Segments"
},
"language_probability": {
"type": "number",
"title": "Language Probability"
}
}
}