Unlimited YouTube Subtitle & Transcript Scraper Pro
Pricing
$20.00/month + usage
Unlimited YouTube Subtitle & Transcript Scraper Pro
๐ฌ๐ผ๐๐ง๐๐ฏ๐ฒ ๐ฆ๐๐ฏ๐๐ถ๐๐น๐ฒ & ๐ง๐ฟ๐ฎ๐ป๐๐ฐ๐ฟ๐ถ๐ฝ๐ ๐๐ผ๐๐ป๐น๐ผ๐ฎ๐ฑ๐ฒ๐ฟ - Extract subtitles and transcripts in ๐บ๐๐น๐๐ถ๐ฝ๐น๐ฒ ๐น๐ฎ๐ป๐ด๐๐ฎ๐ด๐ฒ๐ from any YouTube video. Supports ๐ฏ๐๐น๐ธ ๐ฑ๐ผ๐๐ป๐น๐ผ๐ฎ๐ฑ๐, auto-generated captions & custom language selection.
Pricing
$20.00/month + usage
Rating
5.0
(1)
Developer

Xtech
Actor stats
2
Bookmarked
69
Total users
6
Monthly active users
16 hours ago
Last modified
Categories
Share
YouTube Transcript Scraper Pro
Extract clean transcripts from one or many YouTube videos in a single run.
This Actor accepts YouTube video URLs or video IDs and returns transcripts in the format you need: plain text, timestamped text, SRT, VTT, JSON, CSV, or all formats at once.
What you get
- Bulk processing for multiple videos
- Support for standard YouTube URLs, short URLs, and raw video IDs
- Automatic preference for manually created subtitles when available
- Structured dataset output for downstream automations
- Output format control for different workflows (LLM prep, subtitle editing, QA, analytics)
Input
videos (required)
List of YouTube videos.
Supported values:
- Video ID:
dQw4w9WgXcQ - Watch URL:
https://www.youtube.com/watch?v=dQw4w9WgXcQ - Short URL:
https://youtu.be/dQw4w9WgXcQ
type (optional)
Output format for transcript.
Allowed values:
plain(default)timestampedsrtvttjsoncsvall
keepMusicMarkers (optional)
- Type: boolean
- Default:
false - When
false, markers like[Music]are removed.
dropEmpty (optional)
- Type: boolean
- Default:
true - Removes empty transcript segments after cleanup.
maxConcurrency (optional)
- Type: integer
- Default:
3 - Range:
1to10 - Controls how many videos are processed in parallel.
Output
Each dataset item contains:
video_id(string)language(string ornull)is_generated(boolean ornull)transcript(string, array, object, ornulldepending ontype)
If a video fails, the item is still returned with:
language: nullis_generated: nulltranscript: ""
Example input
{"videos": ["https://www.youtube.com/watch?v=dQw4w9WgXcQ","https://youtu.be/jNQXAC9IVRw","M7FIvfx5J10"],"type": "all","keepMusicMarkers": false,"dropEmpty": true,"maxConcurrency": 4}
Example output item
{"video_id": "dQw4w9WgXcQ","language": "en","is_generated": false,"transcript": {"plain": "Never gonna give you up...","timestamped": "00:00:01.200 Never gonna give you up...","srt": "1\\n00:00:01,200 --> 00:00:03,800\\nNever gonna give you up...","vtt": "WEBVTT\\n\\n00:00:01.200 --> 00:00:03.800\\nNever gonna give you up...","json": [{"text": "Never gonna give you up...","start": 1.2,"duration": 2.6}],"csv": "start,duration,text\\n1.2,2.6,\"Never gonna give you up...\""}}
Typical use cases
- Build subtitle files (
srtorvtt) for editing or publishing - Prepare clean text for AI/LLM pipelines (
plainorjson) - Create timestamped transcripts for compliance or QA reviews
- Batch-export transcripts for research and analytics
Notes
- The Actor deduplicates repeated video IDs in one run.
- Transcript availability depends on whether subtitles exist for a given video.
- For best throughput on larger batches, increase
maxConcurrencygradually.