# Export podcast transcript to VTT

**Use case:** 

Get WebVTT timestamped captions from podcast RSS feeds for web players and clips. CSV/JSON export.

## Input

```json
{
  "feedUrls": [
    "https://feeds.buzzsprout.com/231452.rss"
  ],
  "maxEpisodes": 15,
  "preferType": "vtt",
  "transcriptFormats": [
    "vtt"
  ],
  "monitorMode": false,
  "alertOnNewEpisode": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "podcast": {
    "label": "Podcast",
    "format": "string"
  },
  "episode_title": {
    "label": "Episode",
    "format": "string"
  },
  "published": {
    "label": "Published",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "episode_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Podcast Transcript Scraper — Any RSS Feed to Text & SRT](https://apify.com/scrapersdelight/podcast-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/podcast-transcript-scraper) to learn more, explore other use cases, and run it yourself.