# Scrape Spanish subtitles from Archive.org

**Use case:** 

Filter Archive.org captions to Spanish (es) — transcript, caption_lang_code, srt, item_url. Localized transcript dataset, export-ready.

## Input

```json
{
  "itemUrls": [
    "https://archive.org/details/his_girl_friday",
    "https://archive.org/details/Doctorin1946",
    "HealthYo1953"
  ],
  "searchQuery": "mediatype:movies",
  "languages": [
    "es"
  ],
  "includeAutoGenerated": true,
  "transcriptFormats": [
    "txt",
    "srt"
  ],
  "maxItems": 15,
  "maxCaptionFilesPerItem": 5,
  "monitorMode": false,
  "alertOnNewItem": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "item_title": {
    "label": "Item",
    "format": "string"
  },
  "identifier": {
    "label": "Identifier",
    "format": "string"
  },
  "caption_lang_code": {
    "label": "Lang",
    "format": "string"
  },
  "caption_format": {
    "label": "Format",
    "format": "string"
  },
  "cue_count": {
    "label": "Cues",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "item_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Archive.org Subtitle & Transcript Scraper — TXT, SRT & VTT](https://apify.com/scrapersdelight/archive-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/archive-transcript-scraper) to learn more, explore other use cases, and run it yourself.