# Transcribe Kick VODs with Whisper large-v3

**Use case:** 

Max-accuracy Kick VOD transcription using faster-whisper large-v3: clean text plus subtitles plus timestamped segments.

## Input

```json
{
  "channelSlugs": [
    "xqc"
  ],
  "maxVods": 3,
  "maxMinutesPerVod": 30,
  "model": "large-v3",
  "language": "auto",
  "translateToEnglish": false,
  "transcriptFormats": [
    "txt",
    "srt"
  ],
  "includeMetadataOnly": false,
  "monitorMode": false,
  "alertOnNewVod": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "diagnose": false
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumb",
    "format": "string"
  },
  "channel": {
    "label": "Channel",
    "format": "string"
  },
  "title": {
    "label": "VOD",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "audio_minutes": {
    "label": "Mins",
    "format": "integer"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "vod_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Kick VOD Transcription — Stream to Text, SRT & VTT](https://apify.com/scrapersdelight/kick-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/kick-transcript-scraper) to learn more, explore other use cases, and run it yourself.