Skip to content

Instantly share code, notes, and snippets.

@witt3rd
Last active October 25, 2020 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save witt3rd/7e1abf008982fdf5d4a7eb876629a512 to your computer and use it in GitHub Desktop.
Save witt3rd/7e1abf008982fdf5d4a7eb876629a512 to your computer and use it in GitHub Desktop.
YouTube Download Recipes

youtube-dl Recipes

brew install youtube-dl ffmpeg

Download video or playlist

youtube-dl -f best 'http://www.youtube.com/watch?v=P9pzm5b6FFY'

Download audio (mp3 or m4a) or playlist

youtube-dl -i --extract-audio --audio-format m4a https://www.youtube.com/watch?v=kK2hpeqkYjA
youtube-dl -i --extract-audio --audio-format mp3 https://www.youtube.com/watch?v=kK2hpeqkYjA
youtube-dl -i --extract-audio --audio-format mp3 https://www.youtube.com/playlist?list=PLi1FCxGBD-x6HW2OD0534F-NWjKXY2pyo

Convert from m4a to mp3

ffmpeg -i foo.m4a -acodec libmp3lame -aq 2 bar.mp3

Convert from webm to mp3 (bulk)

find . -type f -iname "*.webm" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -vn -ab 128k -ar 44100 -y "${FILE%.webm}.mp3";' _ '{}' \;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment