update online_radio.eu script
it now scrapes the name of streams too, i might or might not update the recently scraped files to include titles as well
This commit is contained in:
parent
5972c540f1
commit
b69d417593
@ -15,7 +15,8 @@ for i in "" \?page={2..150} ; do for j in $(cat languages.txt) ; do curl -s http
|
||||
for i in A-*.txt ; do cat $i | awk '!seen[$0]++' > A$i ; echo -e $i ; done
|
||||
|
||||
# scrape the streams
|
||||
for i in AA-*.txt ; do for j in $(cat $i) ; do curl -s https://online-radio.eu/radio/$j | grep "url\":" | head -n 1 | awk -F '"' '{print $4}' | grep -v "object" | sed 's/\;//g' | sed '/^$/d' >> A$i ; echo -e "$i - $j" ; done ; done
|
||||
#for i in AA-*.txt ; do for j in $(cat $i) ; do curl -s https://online-radio.eu/radio/$j | grep "url\":" | head -n 1 | awk -F '"' '{print $4}' | grep -v "object" | sed 's/\;//g' | sed '/^$/d' >> A$i ; echo -e "$i - $j" ; done ; done
|
||||
for i in AA-*.txt ; do for j in $(cat $i) ; do curl -s https://online-radio.eu/export/winamp/$j | grep "Title\|File" | sed 's/File1\=//g' | sed 's/Title1\=/#EXTINF:-1 , /g' | sed 's/\;//g' >> A$i ; done ; done
|
||||
|
||||
# convert links to m3u streams
|
||||
for i in AAA-*.txt ; do sed "s/^/#EXTINF:-1\n/" $i | sed '1s/^/#EXTM3U\n/' > $i.m3u ; done
|
||||
|
Loading…
Reference in New Issue
Block a user