yt-dlp - Modern video downloader (replaces deprecated youtube-dl)
/opt/homebrew/bin/yt-dlpbrew install yt-dlp (if missing)Note: youtube-dl is deprecated and should not be used. Always use yt-dlp instead.
ffmpeg - Video/audio processing
/opt/homebrew/bin/ffmpegbrew install ffmpeg (if missing)# Check if installed
which yt-dlp ffmpeg
# If missing, install with Homebrew
brew install yt-dlp ffmpeg
Converting a video series into a hybrid podcast (audio in Git LFS + video links to Vimeo).
/Volumes/The Big Combo/podcasts/dog-park-adjacent/podcast-dog-park-adjacent (private)Vimeo downloads require authentication. Use one of:
--cookies-from-browser (Chrome/Firefox/Safari)--username and --password--netrc (credentials file)Example:
yt-dlp --cookies-from-browser safari "https://vimeo.com/VIDEO_ID"
ffmpeg -i "input-video.mov" -vn -acodec libmp3lame -q:a 2 "output-audio.mp3"
Last Updated: 2025-11-21