# Extract YouTube video transcripts for AI

**Use case:** 

Scrape YouTube transcripts and video metadata for AI summaries, search, classification, and LLM workflows with a ready-made Apify task.

## Input

```json
{
  "channel": [
    "https://www.youtube.com/@CNBCMakeIt"
  ],
  "keywords": false,
  "needVideoDetails": true,
  "numberOfResults": 3,
  "uniqueChannels": false,
  "maxVideosPerChannel": 3,
  "localeHl": "en",
  "localeGl": "US",
  "acceptLanguage": "en-US,en;q=0.9",
  "maxVideoDetailConcurrency": 20,
  "maxChannelConcurrency": 2,
  "fastVideoDetailConcurrency": 20,
  "proxyMode": "auto",
  "videoDetailProxyStrategy": "auto",
  "transcriptMode": "standard",
  "adaptiveTranscriptProxyFallback": true,
  "adaptiveTranscriptRetryConcurrency": 20,
  "residentialFallbackForMissingTranscripts": false,
  "streamDatasetItems": true,
  "resetCheckpoint": false
}
```

## Output

```json
{
  "title": {
    "label": "Video title",
    "format": "string"
  },
  "author": {
    "label": "Channel handle",
    "format": "string"
  },
  "videoUrl": {
    "label": "Video URL",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published date",
    "format": "string"
  },
  "duration": {
    "label": "Duration",
    "format": "string"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "transcriptStatus": {
    "label": "Transcript status",
    "format": "string"
  },
  "transcriptSource": {
    "label": "Transcript source",
    "format": "string"
  },
  "transcriptLanguage": {
    "label": "Transcript language",
    "format": "string"
  },
  "scrapingStatus": {
    "label": "Scraping status",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Youtube Channel Scraper](https://apify.com/newbs/youtube-channel) with a specific input configuration. Visit the [Actor detail page](https://apify.com/newbs/youtube-channel) to learn more, explore other use cases, and run it yourself.