Skip to content

Instantly share code, notes, and snippets.

@vjk2005
Created February 4, 2017 17:26
Show Gist options
  • Save vjk2005/60fc9294639e44efa899683f91a9a78b to your computer and use it in GitHub Desktop.
Save vjk2005/60fc9294639e44efa899683f91a9a78b to your computer and use it in GitHub Desktop.
How to download the highest quality audio from a video and convert to mp3
youtube-dl -ciw --restrict-filenames -o "/media/Scrape/youtube/mp3/%(upload_date)s-%(title)s.%(ext)s" --audio-format mp3 --audio-quality 0 --exec "ffmpeg -i {} -codec:a libmp3lame -qscale:a 0 {}.mp3 && rm {} " "<youtube URL>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment