Play a random Album from a bandcamp profile with mpv/youtube-dl
Go to file
2022-04-02 17:44:52 +02:00
LICENSE Initial commit 2022-04-02 17:43:31 +02:00
README.md „README.md“ ändern 2022-04-02 17:44:52 +02:00

PlayRandomAlbumAtBandcampProfile

Play a random Album from a bandcamp profile with mpv/youtube-dl

Set vardiable

export SOURCELINK="<name>.bandcamp.com"
$ mpv --shuffle --no-video $(for i in $(curl $SOURCELINK | sed -n 's/.*href="\([^"]*\).*/\1/p'| sed 's/.com.*/.com/g' | grep "/album" |  sort | uniq); do echo $SOURCELINK$i; done)