summary refs log tree commit diff
path: root/test.sh
blob: cbe4f479b590faf1828e7ea6e837d1aee666b642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
#just random urls to test the modules

./bandcamp.py https://austinwintory.bandcamp.com/album/stray-gods
./bandcamp.py https://soundoftheaviators.bandcamp.com/track/writing-on-the-walls-2

#soundcloud and spotify add junk to links if you click "share"
./soundcloud.py https://soundcloud.com/lindseystomp/sets/artemis-3
./soundcloud.py 'https://soundcloud.com/lindseystomp/sets/artemis-3?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing'
./soundcloud.py https://soundcloud.com/user-152508755/thefatrat-maisy-kay-the-storm-epic-orchestra-remix
./soundcloud.py 'https://soundcloud.com/user-152508755/thefatrat-maisy-kay-the-storm-epic-orchestra-remix?utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing'

./spotify.py https://open.spotify.com/track/4pY1okPrJvIPBQM0t4i28v
./spotify.py 'https://open.spotify.com/track/4sOX1nhpKwFWPvoMMExi3q?si=c880ccca72ee435d'
./spotify.py https://open.spotify.com/album/2hvCFY4DYaKzzkNYd60oS3
./spotify.py 'https://open.spotify.com/album/1u2ACTYzVNK3vSLG0Ah4H3?si=c1ZT_3YeS8SXkrbErFl6bw'

#youtube oembed does support playlists but ONLY when it's /playlist?list= *NOT* when it is /watch?v=bla&list=
./youtube.py https://www.youtube.com/watch?v=EUD9UTwXAZY
./youtube.py https://www.youtube.com/playlist?list=PL0bbUqXsNHE0ZELST3vW_11GDHKDAwLYh
./youtube.py 'https://www.youtube.com/watch?v=eneLP_P1_fg&list=PL0bbUqXsNHE0ZELST3vW_11GDHKDAwLYh&index=2'
./youtube.py 'https://www.youtube.com/watch?v=I1Dy0Zfw6Qs&list=PLA1IEkclm7_JyTGyYmbT3qId167rGif8I&index=1'