# Scrape Dailymotion transcript to TXT

**Use case:** 

Export plain-text transcripts from Dailymotion videos with title, owner, language and duration. CSV/JSON-ready output.

## Input

```json
{
  "videoUrls": [
    "https://www.dailymotion.com/video/x9e2c9y"
  ],
  "searchLimit": 20,
  "language": "auto",
  "transcriptFormats": [
    "txt"
  ],
  "maxVideos": 0,
  "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.