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

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"
    }
  }
}