added soundcloud download

This commit is contained in:
mrbesen 2020-01-28 13:25:28 +01:00
parent 0c6213017a
commit 28296003af
Signed by: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 4 additions and 0 deletions

4
soundcloud_dl.sh Normal file
View File

@ -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'