From 28296003afc540182913aefb94ce4b96af9fab86 Mon Sep 17 00:00:00 2001 From: mrbesen Date: Tue, 28 Jan 2020 13:25:28 +0100 Subject: [PATCH] added soundcloud download --- soundcloud_dl.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 soundcloud_dl.sh 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'