# YouTube SRT transcript downloader

**Use case:** 

Download YouTube transcript data as SRT subtitles with language fallback, auto-generated captions, and structured transcript metadata.

## Input

```json
{
  "urls": [
    "jNQXAC9IVRw"
  ],
  "language": "en",
  "includeAutoGenerated": true,
  "outputFormat": "srt",
  "chunkParagraphs": false,
  "includeTextAnalysis": true
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "videoTitle": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "segmentCount": {
    "label": "Segments",
    "format": "number"
  },
  "wordCount": {
    "label": "Words",
    "format": "number"
  },
  "readingTimeMinutes": {
    "label": "Read Time (min)",
    "format": "number"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  }
}
```

## About this Actor

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