Instantly extract full transcripts from any YouTube video — plain text or with timestamps — for free.
Built by Avinash Walton
| Feature | Description |
|---|---|
| 📄 Plain Text Copy | पूरा transcript बिना timestamps के copy करें |
| 🕐 Timestamp Copy | हर line के साथ [MM:SS] format में copy करें |
| 📥 Download .txt | Transcript file को download करें offline use के लिए |
| 🔍 Live Search | Transcript में कोई भी word instantly search करें |
| 🖼 Video Metadata | Thumbnail, title, channel, word count automatically दिखाए |
| ⚡ Auto Paste Detect | URL paste करते ही automatically extract हो जाता है |
| ⌨️ Keyboard Shortcut | Ctrl+K / Cmd+K से URL input पर instantly focus |
| 📱 Fully Responsive | Mobile, tablet और desktop — सब पर perfectly काम करता है |
| 🔒 No Login Required | 100% free, कोई account नहीं, कोई payment नहीं |
| 🌐 SEO Optimized | Meta tags, Open Graph, Schema.org structured data |
┌─────────────────────────────────────────────────┐
│ ▶ TranscriptPro │
│─────────────────────────────────────────────────│
│ │
│ YouTube Transcript Extractor │
│ │
│ [ 🔗 YouTube URL paste करें... ] [Extract →] │
│ │
│ ┌─────────────────────────────────────────┐ │
│ │ 📄 Plain Text │ 🕐 With Timestamps │ │
│ │─────────────────────────────────────────│ │
│ │ [00:00] Hello and welcome to this... │ │
│ │ [00:05] Today we are going to talk... │ │
│ └─────────────────────────────────────────┘ │
│ │
│ [Copy Plain] [Copy Timestamps] [Download] [↺] │
└─────────────────────────────────────────────────┘
- इस repository को Fork करें
- Settings → Pages → Source → main branch select करें
- Save करें — कुछ minutes में live हो जाएगा ✅
# Clone the repo
git clone https://github.com/avinashwalton/transcriptpro.git
# Folder open करें
cd transcriptpro
# index.html को browser में open करें
# (किसी server की जरूरत नहीं — directly open हो जाता है)
open index.htmltranscriptpro/
│
├── index.html # Main HTML — SEO optimized, semantic structure
├── style.css # Dark editorial design, responsive layout
├── script.js # Transcript fetch logic, copy/download, search
└── README.md # This file
User enters YouTube URL
↓
Extract Video ID from URL
↓
Fetch Video Metadata (noembed API)
↓
Try YouTube Timedtext API
├── json3 format (primary)
├── srv3 / vtt format (fallback)
└── Page scan for caption track URL (last resort)
↓
Parse caption entries → timestamps + text
↓
Render Plain Text + Timestamped views
↓
User can Copy / Download
json3— YouTube's JSON caption formatsrv3— Structured XML captionsvtt— WebVTT subtitles- Auto-generated captions ✅
- Manual/uploaded captions ✅
Browser same-origin policy bypass के लिए multiple proxies use होते हैं:
api.allorigins.wincorsproxy.iocors-anywhere.herokuapp.com
✅ https://www.youtube.com/watch?v=VIDEO_ID
✅ https://youtu.be/VIDEO_ID
✅ https://youtube.com/shorts/VIDEO_ID
✅ https://youtube.com/embed/VIDEO_ID
✅ VIDEO_ID (direct)
- Private videos — transcript नहीं मिलता (YouTube allow नहीं करता)
- Age-restricted videos — captions publicly accessible नहीं होते
- Captions disabled videos — अगर creator ने captions off किए हों
- CORS dependency — third-party proxies पर depend करता है; occasionally slow हो सकता है
- Theme: Dark editorial with amber/orange accent
- Fonts: Syne (display) · DM Sans (body) · DM Mono (timestamps)
- Color Palette:
- Background:
#0a0a0b - Accent:
#f5a623(amber) - Secondary accent:
#ff6b35(orange)
- Background:
- Animations: CSS-only orbs, loader bars, scroll reveals, toast notifications
- ✅ Title, meta description, keywords
- ✅ Open Graph tags (Facebook, LinkedIn)
- ✅ Twitter Card
- ✅ Schema.org
WebApplicationstructured data - ✅ Canonical URL
- ✅ Semantic HTML5 (header, main, nav, section, article, footer)
- ✅ ARIA labels for accessibility
- ✅
robots: index, follow
- HTML5 — Semantic markup
- CSS3 — Custom properties, Grid, Flexbox, animations
- Vanilla JavaScript — No frameworks, no dependencies
- Google Fonts — Syne, DM Sans, DM Mono
- YouTube Timedtext API — Caption extraction
- noembed API — Video metadata
- AllOrigins / CORSProxy — CORS bypass
MIT License — free to use, modify, and distribute.
MIT License
Copyright (c) 2025 Avinash Walton
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
- Built by Avinash Walton
- Not affiliated with YouTube, Google, or Alphabet Inc.
- YouTube captions/transcripts are the property of their respective creators.
- This tool only accesses publicly available caption data via YouTube's public API.
Avinash Walton
- GitHub: @avinashwalton
Made with ❤️ by Avinash Walton