Video transcript downloader
Skill mouadja02/skills/skills/documentation/video-transcript-downloader
A curated collection of agent skills for your AI agents - engineering craft, prompt engineering, design, growth marketing, ...
npx -y skills add mouadja02/skills --skill video-transcript-downloaderAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
yt-dlp video downloads: video, audio, subtitles, transcripts, clips, playlists — YouTube and more.
SKILL.md
2.0 KB, 465 tokens by cl100k_base, as published. Nobody here has run it
Video Transcript Downloader
Attribution: Sourced from steipete/agent-scripts by Peter Steinberger.
When to Use
- Downloading video, audio, or subtitle tracks from YouTube and other platforms
- Extracting transcripts or captions for content analysis
- Clipping segments or downloading playlists via yt-dlp
Download and extract transcripts/video/audio from YouTube and other video platforms using yt-dlp.
Capabilities
- Print a transcript as a clean paragraph (timestamps optional).
- Download video/audio/subtitles.
Transcript behavior:
- YouTube: fetch via
youtube-transcript-pluswhen possible. - Otherwise: pull subtitles via
yt-dlp, then clean into a paragraph.
Transcript
# Clean paragraph transcript (default)
yt-dlp --write-auto-subs --skip-download --sub-format vtt --sub-langs en URL
# Or use yt-dlp subtitles
# With timestamps
yt-dlp --write-auto-subs --skip-download --convert-subs srt --sub-langs en URL
Download Video / Audio / Subtitles
# Video
yt-dlp URL -o '%(title)s.%(ext)s'
# Audio only
yt-dlp -x --audio-format mp3 URL
# Subtitles
yt-dlp --write-subs --skip-download --sub-langs en URL
# List available formats
yt-dlp -F URL
# Download specific format
yt-dlp -f 137+140 URL
# Prefer MP4 without re-encoding
yt-dlp --remux-video mp4 URL
Notes
- Default transcript output is a single paragraph. Use timestamp-preserving formats only when asked.
- Bracketed cues like
[Music]appear in auto-generated subtitles; filter withsedorgrep -v '^\['. - For playlists:
yt-dlp --yes-playlist URL
Troubleshooting
# Install dependencies
brew install yt-dlp ffmpeg
# Verify
yt-dlp --version
ffmpeg -version | head -n 1