diff --git a/soundcloud_dl.sh b/soundcloud_dl.sh new file mode 100644 index 0000000..d39f773 --- /dev/null +++ b/soundcloud_dl.sh @@ -0,0 +1,4 @@ +#!/bin/bash +#requires youtube-dl and your soundcloud username (visible when you take a look at the url, of your profile) +scuser="USER" +youtube-dl "https://soundcloud.com/$scuser/likes" --embed-thumbnail --add-metadata --metadata-from-title "%(artist)s - %(title)s" -o "%(playlist_index)03d-%(title)s.%(ext)s" -f mp3 --restrict-filenames --sleep-interval 1 --exec 'echo "{}" >> list.m3u8'