# Download YouTube Subtitles as SRT (Auto-Captions)

**Use case:** 

Fetch the English captions from any YouTube video as a clean SRT file, falling back to auto-generated captions when no manual track exists.

## Input

```json
{
  "urls": [
    "https://www.youtube.com/watch?v=Unzc731iCUY"
  ],
  "quality": "720",
  "audioOnly": false,
  "subtitles": true,
  "subLangs": "en",
  "includeMetadata": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "channel": {
    "label": "Channel"
  },
  "durationSeconds": {
    "label": "Duration seconds"
  },
  "resolution": {
    "label": "Resolution"
  },
  "format": {
    "label": "Format"
  },
  "fileSizeBytes": {
    "label": "File size bytes"
  },
  "mediaUrl": {
    "label": "File",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Video & Audio Downloader](https://apify.com/dami_studio/youtube-video-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/youtube-video-downloader) to learn more, explore other use cases, and run it yourself.