Downloads videos from YouTube and other platforms for offline viewing, editing, or archival. Handles various formats and quality options.
This skill downloads videos from YouTube and other platforms directly to your computer.
Download this YouTube video: https://youtube.com/watch?v=...
Download this video in 1080p quality
Download the audio from this YouTube video as MP3
Download all videos from this YouTube playlist: [URL]
Download these 5 YouTube videos:
1. [URL]
2. [URL]
...
For downloading transcripts (not video files), use the script in Mission Control:
{VAULT}/00 Mission Control/youtube-transcripts/
cd "{VAULT}/00 Mission Control/youtube-transcripts"
# Download from a channel (only videos with captions)
python3 download_transcripts_v2.py --channel CHANNEL_NAME
# Download from a channel (ALL videos - uses Deepgram for those without captions)
python3 download_transcripts_v2.py --channel CHANNEL_NAME --deepgram
# Limit to first N videos (good for testing)
python3 download_transcripts_v2.py --channel CHANNEL_NAME --deepgram --limit 10
# Custom output location
python3 download_transcripts_v2.py --channel CHANNEL_NAME --deepgram --output ~/Desktop/transcripts
--channel, -c - YouTube channel name (without @)--deepgram, -d - Use Deepgram as fallback when no captions available--threads, -t - Number of parallel threads (default: 10)--limit, -l - Limit number of videos to process--output, -o - Output directory--name, -n - Output file name (without extension)Scripts generate two files:
Default output location: ~/Documents/youtube_transcripts/
User: "Download this YouTube video: https://youtube.com/watch?v=abc123"
Output:
Downloading from YouTube...
Video: "How to Build Products Users Love"
Channel: Lenny's Podcast
Duration: 45:32
Quality: 1080p
Progress: ââââââââââââââââââââ 100%
â Downloaded: how-to-build-products-users-love.mp4
â Saved thumbnail: how-to-build-products-users-love.jpg
â Size: 342 MB
Saved to: ~/Downloads/
Inspired by: Lenny's workflow from his newsletter
â ï¸ Copyright & Fair Use
--deepgram flag for videos without auto-captions