# Export TED Talk subtitles to VTT

**Use case:** 

Produce WebVTT caption files from TED Talks for HTML5 video and streaming players. Per-talk VTT output.

## Input

```json
{
  "talkUrls": [
    "https://www.ted.com/talks/brene_brown_the_power_of_vulnerability"
  ],
  "language": "en",
  "transcriptFormats": [
    "vtt"
  ],
  "includeTakeaways": true,
  "maxTalks": 10,
  "monitorMode": false,
  "alertOnNewTalk": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Talk",
    "format": "string"
  },
  "speaker": {
    "label": "Speaker",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "duration_sec": {
    "label": "Sec",
    "format": "integer"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TED Talk Transcript Scraper — TXT, SRT & VTT (No Login)](https://apify.com/scrapersdelight/ted-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/ted-transcript-scraper) to learn more, explore other use cases, and run it yourself.