Skip to content

Instantly share code, notes, and snippets.

@qifei
Last active August 25, 2024 02:55
Show Gist options
  • Save qifei/372aab8734acf5558fc2a4ebdd2f0402 to your computer and use it in GitHub Desktop.
Save qifei/372aab8734acf5558fc2a4ebdd2f0402 to your computer and use it in GitHub Desktop.

best quality and small size

yt-dlp -f 'bestvideo[height=720]+bestaudio[ext=m4a]/best' --merge-output-format mp4 https://www.youtube.com/watch?v=lVrJ4y1gTwk

best compatibility (h264)

yt-dlp -f 'bestvideo[vcodec~="^((he|a)vc|h26[45])"][height=1080]+bestaudio[ext=m4a]/best' --merge-output-format mp4 https://www.youtube.com/watch?v=ouf06bPx_hY

best compatibality NEW

yt-dlp -S 'vcodec:h264,acodec:m4a' -f "bestvideo[ext=mp4][height=720]+bestaudio[ext=m4a]" https://www.youtube.com/watch?v=QzcvRDWgRIE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment