⚡ YouTube AI Transcript & Video Intelligence Extractor [MCP] avatar

⚡ YouTube AI Transcript & Video Intelligence Extractor [MCP]

Pricing

Pay per usage

Go to Apify Store
⚡ YouTube AI Transcript & Video Intelligence Extractor [MCP]

⚡ YouTube AI Transcript & Video Intelligence Extractor [MCP]

Extract YouTube video transcripts, timestamps, chapters, and metadata formatted as clean Markdown for AI RAG pipelines, LLMs, and Cursor.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Jayshree Jain

Jayshree Jain

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Extract YouTube video transcripts, timestamps, chapters, and metadata formatted as clean Markdown for AI RAG pipelines, LLMs, and Cursor.


🌟 Architectural Comparison: AI-Ready Transcript Structuring vs. Raw Subtitle Scrapers

FeatureTraditional Browser-Based Scrapers⚡ YouTube AI Transcript Extractor [MCP]
RAG Chapter Chunking❌ Dumps wall of textAutomatic ## [MM:SS] Chapter segmentation
Punctuation & Flow❌ Raw fragmented ASR cuesPunctuation-restored paragraphs
LLM Context Budgeting❌ No token calculationCalculates characters, words, & estimated LLM tokens
Manual vs ASR Detection❌ Random caption selectionPrioritizes human captions over auto-generated ASR
Metadata & JSON-LD❌ Text onlyFull VideoObject Schema.org, view count, & channel intel
Error Handling❌ Crashes on un-captioned videosGraceful error taxonomy (Exit 0 guaranteed)
Execution ArchitectureHeavyweight Browser EmulationDirect TimedText HTTP Extraction (Zero Browser Overhead)

📥 Input Example

{
"startUrls": [
"https://www.youtube.com/watch?v=dQw4w9WgXcQ"
],
"preferManualCaptions": true,
"targetLanguages": ["en", "en-US"],
"includeChapters": true,
"includeTimestamps": true,
"includeMetadata": true
}

📤 Output Dataset Format

{
"videoId": "dQw4w9WgXcQ",
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"title": "Rick Astley - Never Gonna Give You Up (Official Music Video)",
"channelName": "Rick Astley",
"channelUrl": "https://www.youtube.com/channel/UCuAXFkgsw1L7xaCfnd5JJOw",
"durationSeconds": 213,
"durationFormatted": "03:33",
"viewCount": 1814378375,
"captionType": "manual",
"language": "en",
"chaptersCount": 4,
"chapters": [
{ "title": "Intro", "startTimeSeconds": 0, "timestamp": "00:00" },
{ "title": "Chorus", "startTimeSeconds": 43, "timestamp": "00:43" }
],
"transcriptMarkdown": "# Rick Astley - Never Gonna Give You Up\n\n## [00:00] Intro\n[00:01] [Music] ...",
"charCount": 2771,
"wordCount": 512,
"estimatedTokens": 692,
"success": true,
"fetchedAt": "2026-09-11T10:15:00.000Z"
}