GuidesRecipes
DiscordDashboard
DiscordDashboard

Speech to text

Transcribe audio files to texts easily using the transcribe function

Function: transcribe

Prototype:

async function transcribe(file: Uint8Array | Buffer | Readable): Promise<string>

πŸ’‘ Example

// Get your file from an upload/fetch.

// In React:
const { models: { transcribe } } = usePolyfire();
// In other environments:
const { models: { transcribe } } = polyfire;

const transcription = await transcribe(file);

console.log(transcription);

Should return (only if you have send the audio version on the bee-movie of course)

According to all known laws of aviation, there is no way that a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care about what humans think is impossible.

The supported file formats are mp3, mp4, mpeg, mpga, m4a, wav and webm

The maximum file size is 25MB