Skip to content

Instantly share code, notes, and snippets.

@mfd
Last active May 9, 2022 09:13
Show Gist options
  • Save mfd/036d8c192bbd520eb0d812a1e6532be1 to your computer and use it in GitHub Desktop.
Save mfd/036d8c192bbd520eb0d812a1e6532be1 to your computer and use it in GitHub Desktop.
Download any mix or music from youtube, soundcloud, mixcloud #osx#music

Download any mix or music from soundcloud & mixcloud

install youtube-dl from brew

$ brew install youtube-dl

Soundcloud

$ youtube-dl --list-formats https://soundcloud.com/deepsystems/deepsystems-show-17-4-17 
$ youtube-dl -f bestaudio --add-metadata https://soundcloud.com/deepsystems/deepsystems-show-6-2-17

Download from youtube with best quality and convert to mp3

$ youtube-dl --extract-audio --audio-format mp3 https://youtu.be/t8X-lMEBsuo
$ youtube-dl -f bestaudio --add-metadata https://soundcloud.com/{user}/likes

Etc

# Trim from 00:02:54.583 to end of file
$ ffmpeg -i input.mp3 -ss 00:02:54.583 -acodec copy output.mp3
 
# Trim from 00:02:54.583 for 5 minutes
$ ffmpeg -i input.mp3 -ss 00:02:54.583 -t 300 -acodec copy output.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment