scripts/soundcloud_dl.sh

5 lines
388 B
Bash

#!/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'