# Podcast MP3 to Text: Transcribe Episodes to Transcript

**Use case:** 

Podcasters get a clean text transcript from any MP3 episode URL, ready to paste into show notes, a blog post, or searchable archives.

## Input

```json
{
  "mediaUrl": "https://traffic.libsyn.com/secure/myshow/episode-142.mp3",
  "language": "en",
  "wordTimestamps": false,
  "outputFormats": [
    "txt"
  ],
  "model": "whisper-1"
}
```

## Output

```json
{
  "language": {
    "label": "Language"
  },
  "wordCount": {
    "label": "Word count"
  },
  "segmentCount": {
    "label": "Segment count"
  },
  "durationSeconds": {
    "label": "Duration seconds"
  },
  "srtUrl": {
    "label": "Srt url"
  },
  "vttUrl": {
    "label": "Vtt url"
  },
  "text": {
    "label": "Text"
  }
}
```

## About this Actor

This example demonstrates how to use [Video & Audio Transcriber — Word-Level + SRT/VTT](https://apify.com/dami_studio/video-audio-transcriber) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/video-audio-transcriber) to learn more, explore other use cases, and run it yourself.