You're looking at a specific version of this model. Jump to the model overview.

irulkenzei /faster-whisper-transcribe:0b08d443

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

Output schema

The shape of the response you’ll get when you run this model with an API.

Schema
{'properties': {'language': {'title': 'Language', 'type': 'string'},
                'language_probability': {'title': 'Language Probability',
                                         'type': 'number'},
                'segments': {'items': {'properties': {'end': {'title': 'End',
                                                              'type': 'number'},
                                                      'start': {'title': 'Start',
                                                                'type': 'number'},
                                                      'text': {'title': 'Text',
                                                               'type': 'string'}},
                                       'required': ['start', 'end', 'text'],
                                       'title': 'Segment',
                                       'type': 'object'},
                             'title': 'Segments',
                             'type': 'array'},
                'text': {'title': 'Text', 'type': 'string'}},
 'required': ['text', 'language', 'language_probability', 'segments'],
 'title': 'Output',
 'type': 'object'}