Crowdee
LT Pipelines

Audio Transcription

Transcribe audio and video files to text with segment-level timestamps using Whisper.

The lt-transcription pipeline converts audio and video files to text using OpenAI Whisper. It returns a full transcript along with segment-level timestamps, detected language, and total duration.

250 credits per file · ~3 minutes

Accepted Files

TypeMIME types
Audioaudio/* (MP3, WAV, M4A, OGG, FLAC, …)
Videovideo/* (MP4, MOV, MKV, …)

One file per run. Maximum file size: 25 MB (Whisper API limit).

Context Parameters

ParameterRequiredDescription
languageNoISO 639-1 language code of the spoken language (e.g. de, fr, es). If omitted, Whisper auto-detects the language.

Providing the language code when you know it improves accuracy and reduces processing time.

Output

{
  "pipelineSlug": "lt-transcription",
  "output": {
    "text": "Hello, this is a sample transcript of the audio file.",
    "language": "English",
    "languageCode": "en",
    "duration": 120.5,
    "segments": [
      {
        "start": 0.0,
        "end": 2.8,
        "text": "Hello, this is a sample"
      },
      {
        "start": 2.8,
        "end": 5.1,
        "text": "transcript of the audio file."
      }
    ]
  },
  "rawText": "Hello, this is a sample transcript of the audio file."
}

Output Fields

FieldTypeDescription
textstringFull transcript as a single string
languagestringDetected language name (e.g. "English")
languageCodestringISO 639-1 code (e.g. "en")
durationnumberTotal audio duration in seconds
segmentsarraySegment-level breakdown with start, end, and text
rawTextstringAlias of text for uniform access across pipeline types

API Example

POST /v2/lt-pipelines/project/{projectId}/run
{
  "pipelineSlug": "lt-transcription",
  "fileIds": ["file_abc123"],
  "contextData": {
    "language": "de"
  }
}

Response:

{
  "runIds": ["ltrun_xyz789"]
}

Retrieve the result once the run completes:

GET /v2/lt-pipelines/runs/ltrun_xyz789

How is this guide?

© 2026 Crowdee GmbH. All rights reserved.

On this page