„README.md“ ändern

This commit is contained in:
Kaisa Marysia 2022-04-02 17:44:31 +02:00
parent 580a6c6a34
commit 7d5fd5fa9a

View file

@ -1,3 +1,11 @@
# PlayRandomAlbumAtBandcampProfile
Play a random Album from a bandcamp profile with mpv/youtube-dl
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)
```