# Bulk Dailymotion transcript extractor

**Use case:** 

Paste a list of Dailymotion URLs or IDs and export all transcripts at once with metadata to CSV/JSON.

## Input

```json
{
  "videoUrls": [
    "https://www.dailymotion.com/video/x9e2c9y",
    "x8abcde0"
  ],
  "searchLimit": 20,
  "language": "auto",
  "transcriptFormats": [
    "txt"
  ],
  "maxVideos": 25,
  "monitorMode": false,
  "alertOnNewVideo": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Video",
    "format": "string"
  },
  "owner": {
    "label": "Owner",
    "format": "string"
  },
  "duration_sec": {
    "label": "Sec",
    "format": "number"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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