# TikTok and Reels Transcript Extractor

**Use case:** 

Extract transcripts from TikTok, Instagram Reels, Facebook Reels, and YouTube Shorts when captions are available.

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/shorts/aqz-KE-bpKQ",
    "https://www.tiktok.com/@tiktok/video/7106594312292453678"
  ],
  "maxRetries": 3
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "videoId": {
    "label": "Video ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "transcriptText": {
    "label": "Transcript",
    "format": "text"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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