# Vimeo Captions and Subtitles Extractor

**Use case:** 

Download every public Vimeo caption and subtitle track as transcript text, timestamped cues, and source VTT URLs.

## Input

```json
{
  "videoUrls": [
    "https://player.vimeo.com/video/980152407"
  ],
  "languageCodes": [],
  "includeRawVtt": true,
  "maxConcurrency": 1
}
```

## Output

```json
{
  "videoId": {
    "label": "Video ID",
    "format": "integer"
  },
  "videoUrl": {
    "label": "Video",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "ownerName": {
    "label": "Owner",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Seconds",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "label": {
    "label": "Track",
    "format": "string"
  },
  "kind": {
    "label": "Kind",
    "format": "string"
  },
  "provenance": {
    "label": "Provenance",
    "format": "string"
  },
  "isDefault": {
    "label": "Default",
    "format": "boolean"
  },
  "cueCount": {
    "label": "Cues",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "sourceVttUrl": {
    "label": "Source VTT",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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