YouTube Verbatim
Extract full transcripts with timestamps from any YouTube video. Supports manual & auto-generated captions. Multi-language.
Extract Transcript
Paste a YouTube linkThe creator may have disabled them, or the video is too new for auto-generated captions.
Extract Transcript
How It Works
Related Tools
FAQ
Does this work with auto-generated captions?
Yes. YouTube auto-generates captions for most videos. If a video has both manual and auto-generated captions, you can choose which one to use from the language dropdown.
Kenapa muncul "Could not extract captions"?
YouTube memblokir request langsung dari browser (CORS policy). Solusi terbaik: deploy Cloudflare Worker gratis sebagai proxy. Lihat langkah-langkah di bawah.
★ Cara deploy Cloudflare Worker (gratis, 5 menit)
1. Buka workers.cloudflare.com → Login / daftar gratis (tidak perlu kartu kredit)
2. Klik Create Worker
3. Hapus semua kode default, paste isi file cloudflare-worker.js
4. Klik Deploy
5. Copy URL worker: misal yt-proxy.namaanda.workers.dev
6. Buka file youtube-verbatim/index.html, cari baris:
const CF_WORKER_URL = 'https://still-union-363a.miftahhilmi-com.workers.dev/';
Ubah menjadi:
const CF_WORKER_URL = 'https://yt-proxy.namaanda.workers.dev';
7. Simpan. Selesai — gratis 100.000 request/hari.
Why might captions be unavailable?
The video creator may have disabled captions, or the video may be too new for auto-generated captions. Live videos usually don't have captions.
Are private or age-restricted videos supported?
No. Only publicly accessible videos with captions enabled are supported.
What does the SRT file contain?
SRT (SubRip Subtitle) is a standard subtitle format used by video editors and media players. It includes numbered entries with start/end timestamps and text.
Is my data safe?
Only the video ID is sent to YouTube's subtitle service. No video content is downloaded. No data is stored anywhere — everything runs in your browser.