# Generate SRT & VTT subtitles for a podcast

**Use case:** 

Generate SRT and VTT subtitles from a Podcast episode. Includes timestamps and accurate transcripts for better accessibility.

## Input

```json
{
  "source": "TED Talks Daily",
  "episodeSelection": "latest",
  "episodeIndex": 0,
  "includeTranscript": true,
  "includeAnalysis": false,
  "analysis": [
    "summary",
    "chapters",
    "topics",
    "entities",
    "guests",
    "sentiment",
    "adReads"
  ],
  "mentions": [],
  "includeAudio": false,
  "subtitleFormats": [
    "srt",
    "vtt"
  ],
  "diarize": true,
  "smartFormat": true,
  "timestamps": true,
  "maxAudioMinutes": 600,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "showTitle": {
    "label": "Show",
    "format": "text"
  },
  "episodeTitle": {
    "label": "Episode",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "transcriptStatus": {
    "label": "Status",
    "format": "text"
  },
  "transcriptLength": {
    "label": "Transcript chars",
    "format": "number"
  },
  "enclosureUrl": {
    "label": "Audio",
    "format": "link"
  },
  "episodeUrl": {
    "label": "Episode page",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Podcast Transcriber & Analyzer](https://apify.com/hgservices/podcast-transcriber) with a specific input configuration. Visit the [Actor detail page](https://apify.com/hgservices/podcast-transcriber) to learn more, explore other use cases, and run it yourself.