YouTube Transcript Extractor
Wraps yt-dlp to extract clean transcripts from YouTube videos.
Quick Start
# Extract transcript as clean text
scripts/transcript.sh "https://www.youtube.com/watch?v=VIDEO_ID"
# Specify language (default: en)
scripts/transcript.sh "https://www.youtube.com/watch?v=VIDEO_ID" id
Manual Commands
Get video metadata (JSON)
yt-dlp --dump-json "URL" | python3 -c "
import json,sys; d=json.load(sys.stdin)
print(f'Title: {d[\"title\"]}')
p
[Description truncada. Veja o README completo no GitHub.]