# Podcast Back-Catalog Transcription

**Use case:** 

Batch transcribe an entire podcast back-catalog. SRT, VTT, TXT, and Markdown per episode. No repurposing — transcript only.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://feeds.buzzsprout.com/your-show/episode.mp3"
    },
    {
      "url": "https://feeds.buzzsprout.com/your-show/episode-2.mp3"
    }
  ],
  "language": "auto",
  "diarize": false,
  "showNotesOptions": {
    "maxChapters": 8,
    "quotesCount": 5,
    "includeTimestamps": true
  },
  "exportFormats": [
    "vtt",
    "txt",
    "srt",
    "md"
  ],
  "maxPollSeconds": 240,
  "pollIntervalSeconds": 15
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "transcript_txt": {
    "label": "Transcript (TXT)",
    "format": "string"
  },
  "repurposed_show-notes": {
    "label": "Show Notes",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Podcast Show Notes Generator — AI Transcription & Chapters](https://apify.com/toshiusklay/wisprs-podcast-show-notes) with a specific input configuration. Visit the [Actor detail page](https://apify.com/toshiusklay/wisprs-podcast-show-notes) to learn more, explore other use cases, and run it yourself.