VOOZH about

URL: https://apify.com/neuro-scraper/my-actor-11

⇱ Youtube Video Transcript Scraper Β· Apify


πŸ‘ Youtube Video Transcript Scraper avatar

Youtube Video Transcript Scraper

Pricing

$5.99/month + usage

Go to Apify Store

Youtube Video Transcript Scraper

A powerful YouTube Video Transcript Scraper that instantly pulls clean, accurate captions from any video β€” perfect for creators, researchers, and AI workflows. Fast, reliable, and built to save your time.

Pricing

$5.99/month + usage

Rating

0.0

(0)

Developer

πŸ‘ Neuro Scraper

Neuro Scraper

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

0

Monthly active users

6 months ago

Last modified

Share

🌟 YouTube Video Transcript Scraper

πŸ‘ Build
πŸ‘ Version
πŸ‘ License
πŸ‘ Apify

Accurate, timestamped transcripts for full-length YouTube videos β€” chapters, subtitles, and multi-language support.


πŸ“– Overview

This Actor extracts clean, timestamped transcripts from full-length YouTube videos (standard watch URLs, youtu.be, and /watch?v= formats). It's designed for longer content: works with multiple caption tracks, handles chapters, and produces export-ready captions (SRT/VTT) alongside structured JSON suitable for analytics and LLM pipelines.


πŸ’‘ Why Full-Video Focus?

  • Full videos often contain chapters, multiple speakers, and longer dialogues β€” transcripts must preserve timing and structure.
  • Supports official captions when available and high-quality ASR fallbacks when not.
  • Produces SRT/VTT, plain text, and structured JSON for downstream processing.

πŸ”§ Key Features

  • βœ… Multi-format URL normalization (/watch?v=, youtu.be).
  • βœ… Prefer official caption tracks; fallback to ASR extraction when captions are missing.
  • βœ… Preserve chapters and video metadata (title, duration, thumbnails).
  • βœ… Export as JSON, plain text, SRT, and VTT.
  • βœ… Optional speaker diarization and language detection.
  • βœ… Configurable chunking for very long videos and resume/retry support.
  • βœ… Proxy-compatible and production-ready for large-scale jobs.

⚑ Quick Start β€” Console

  1. Open the Actor on Apify Console.
  2. Paste one or more YouTube video URLs into the input (watch links or youtu.be links accepted).
  3. Click Run β€” results appear in the Dataset and Files (SRT/VTT) tabs.

βš™οΈ Quick Start β€” CLI & Python

CLI

$apify call neuro-scraper/youtube-transcript-fetcher --input ./videos_input.json

Python (apify-client)

from apify_client import ApifyClient
client = ApifyClient('<APIFY_TOKEN>')
run = client.actor('neuro-scraper/youtube-transcript-fetcher').call(
run_input={
"startUrls":[{"url":"https://www.youtube.com/watch?v=EXAMPLE"}],
"workers":3,
"exportFormats":["json","srt","vtt"]
}
)
for item in client.dataset(run['defaultDatasetId']).list_items()['items']:
print(item['Transcript']['plain_text'][:400])

πŸ“ Inputs (Video-focused)

NameTypeRequiredDefaultExampleNotes
startUrlsarrayYes[][{"url":"https://www.youtube.com/watch?v=abcd1234"}]List of YouTube video URLs
workersintegerOptional510Max concurrent fetches
exportFormatsarrayOptional["json"]["json","srt","vtt"]Output formats to generate
speakerDiarizationbooleanOptionalfalsetrueEnable speaker detection (best-effort)
languagestringOptionalnull"en"Force output language (ISO code)
proxyConfigurationobjectOptional{}{"useApifyProxy": true}Proxy settings

Example input (Console JSON):

{
"startUrls":[
{"url":"https://www.youtube.com/watch?v=abcd1234"},
{"url":"https://youtu.be/abcd1234"}
],
"workers":5,
"exportFormats":["json","srt","vtt"],
"speakerDiarization":true,
"proxyConfiguration":{"useApifyProxy":true}
}

πŸ“„ Outputs

Each Dataset item contains rich metadata and multiple transcript representations. Example:

{
"inputUrl":"https://www.youtube.com/watch?v=abcd1234",
"fetchedAt":"2025-11-04T10:00:00Z",
"success":true,
"video":{
"title":"Example Video",
"duration":3720,
"chapters":[
{"title":"Intro","start":0},
{"title":"Main topic","start":60}
]
},
"Transcript":{
"plain_text":"Full transcript text...",
"with_timestamps":[
{"text":"Hello and welcome to the show.","start":0.2,"end":4.5},
{"text":"Today we'll talk about...","start":5.0,"end":9.3}
],
"speaker_segments":[
{"speaker":"Speaker 1","start":0.2,"end":4.5,"text":"Hello and welcome to the show."}
]
},
"files":{
"srt":"runs/<runId>/files/abcd1234.srt",
"vtt":"runs/<runId>/files/abcd1234.vtt"
}
}

Notes: Files (SRT/VTT) are attached to the run and accessible from the Files tab for easy download.


πŸ”‘ Environment Variables

  • APIFY_TOKEN β€” required for authentication.
  • HTTP_PROXY, HTTPS_PROXY β€” optional custom proxies.
  • APIFY_PROXY_PASSWORD β€” use with Apify Proxy.

Store credentials securely as secrets β€” never in plaintext.


▢️ How to Run (short checklist)

  1. Open Apify Console β†’ Actors β†’ YouTube Transcript Fetcher.
  2. Provide video URLs (watch or youtu.be), set desired export formats, and toggle options.
  3. Run and inspect Dataset and Files tabs for JSON/SRT/VTT outputs.

πŸ›  Logs & Troubleshooting

  • No transcript available β€” video may lack captions and audio quality may be too poor for ASR.
  • Partial transcripts β€” long videos may be chunked; check run logs for retry or chunk status.
  • Timeouts / failures β€” lower workers or increase timeouts; enable proxy if region-restricted.

Monitor real-time logs in the Console Run Log panel for detailed error messages.


⏱ Scheduling & Webhooks

  • Schedule daily or weekly runs for channel-level ingestion.
  • Use Webhooks to push transcript files or Dataset updates to downstream systems (storage, search index, or ML pipelines).

πŸ”Ÿ Changelog

  • 1.0.0 β€” 2025-11-04: Initial release β€” full-video support.

πŸ“ Notes & TODO

  • TODO: Add example of chapter-aware summarization pipeline.
  • TODO: Improve speaker diarization accuracy with optional external ASR.

βœ… Final note

This README is designed for researchers, media teams, and engineers who need robust, exportable transcripts from full-length YouTube videos β€” suitable for analytics, captioning, and training data generation.

You might also like

YouTube Transcript Scraper

fetch_cat/youtube-transcript-scraper

Extract clean transcript text, timestamps, captions, and public video metadata from YouTube URLs or video IDs for AI, SEO, and research workflows.

Youtube Video Details+Transcript -Fast

sculptured_yard/youtube-video-details-transcript--fast

Youtube Video Details+Transcript -Fast is an Apify API that takes one or more YouTube video URLs (with optional per-video language), fetches video metadata and transcript and returns a single clean JSON output per video with details, transcript text, and error status.

13

YouTube Transcript Scraper

devscrapper/youtube-transcript-scraper

YouTube Transcript Scraper – Fast, Clean & Reliable

πŸ‘ User avatar

Oussama Production

3

YouTube Video Transcript Scraper

scrapearchitect/youtube-video-transcript-scraper

πŸ“ YouTube Video Transcript Scraper – Instantly extract multilingual transcripts from any YouTube video in multiple formats (πŸ“„ VTT, 🧾 JSON, πŸ“œ TTML, and more)! Perfect for language learners, content creators, researchers, and devs! 🌍πŸŽ₯πŸ’¬

πŸ‘ User avatar

Scrape Architect

42

Youtube Transcript Scraper

scrapeengine/youtube-transcript-scraper

🎬 YouTube Transcript Scraper (youtube-transcript-scraper) pulls clean video transcripts/captions with timestamps, multi-language, and batch export (JSON/CSV). πŸ”Ž Ideal for SEO, keyword research, summaries, accessibility, and content repurposing. ⚑ Fast, reliable, API-ready.

Youtube Transcript Scraper

scraper-mind/youtube-transcript-scraper

Extract YouTube video transcripts, captions & metadata instantly using our youtube transcript scraper. Supports all URL types, smart proxy fallback, multi-language detection & JSON output. Fast, reliable & only $5/runβ€”perfect for creators, researchers, and marketers.

18

Youtube Transcript - 1$/month

insight_api_labs/youtube-transcript

Youtube Transcript (with video details and transcript timestamps)

πŸ‘ User avatar

InsightAPILabs

937

3.1