# YouTube Video Transcript Scraper

**Use case:** 

Extract YouTube video transcripts with timestamps, language, word counts, and structured transcript text.

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  ],
  "maxRetries": 2
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "segmentCount": {
    "label": "Segments",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Video Transcript Scraper](https://apify.com/automation-lab/video-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/video-transcript-scraper) to learn more, explore other use cases, and run it yourself.