Transcribe Video and Audio Files

View Markdown

Transcribe your video and audio files with ittybit's speech tasks.


Create a Speech Task

curl -X POST "https://api.ittybit.com/tasks" \
-H "Authorization: Bearer ITTYBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "url": "https://example.com/video.mp4",
  "kind": "speech"
}'

Identify Speakers

You can create a new speech task with speakers: true to identify and label separate speakers (known as "diarization").

curl -X POST "https://api.ittybit.com/tasks" \
-H "Authorization: Bearer ITTYBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "url": "https://example.com/video.mp4",
  "kind": "speech",
  "options": {
    "speakers": true
  }
}'

See the Speech Tasks section for more information about available options.

On this page