# Scrape Wistia video transcript

**Use case:** 

Extract Wistia video transcript text plus title, duration, and caption language - export-ready as CSV or JSON.

## Input

```json
{
  "hashedIds": [
    "z1fxq584qr"
  ],
  "transcriptFormats": [
    "txt"
  ],
  "maxVideos": 10,
  "monitorMode": false,
  "alertOnNewVideo": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Video",
    "format": "string"
  },
  "duration_sec": {
    "label": "Sec",
    "format": "number"
  },
  "caption_language": {
    "label": "Lang",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  }
}
```

## About this Actor

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