Skip to content

Instantly share code, notes, and snippets.

@imRohan
Last active August 11, 2017 15:37
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 imRohan/f0cdc8d1c407c0aabd2aa1f40ea19b6e to your computer and use it in GitHub Desktop.
Save imRohan/f0cdc8d1c407c0aabd2aa1f40ea19b6e to your computer and use it in GitHub Desktop.
Youtube-DL Helpful Commands
// Download a playlist from index, and skip errors
sudo youtube-dl -i --playlist-start 0 [link]
-i = continue on error (skip song)
--playlist-start [index] = start downloading at a index
// Download a mp3 form youtube
sudo youtube-dl --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" [link]
// Download mp3 from Soundcloud ignore errors
sudo youtube-dl -i -o "%(title)s.%(ext)s" [link]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment