Transcribe Video and Audio Files

View Markdown

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


Create a Speech Task

const task = await ittybit.tasks.create({
  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").

const task = await ittybit.tasks.create({
  url: 'https://example.com/video.mp4',
  kind: 'speech',
  speakers: true,
});

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


(See SDKs for install and initialization steps.)

On this page