# Scrape Portuguese TED Talk transcripts

**Use case:** 

Download Brazilian Portuguese (pt-br) TED transcripts for translation and language datasets. CSV/JSON export.

## Input

```json
{
  "talkUrls": [
    "https://www.ted.com/talks/simon_sinek_how_great_leaders_inspire_action"
  ],
  "language": "pt-br",
  "transcriptFormats": [
    "txt"
  ],
  "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.