From 24e16b26f2ccca914a7c2c48834ce94b00a7171a Mon Sep 17 00:00:00 2001 From: "U-DESKTOP-3VIS1T9\\junguler" Date: Wed, 22 Nov 2023 19:26:44 +0330 Subject: [PATCH] add keep_one script --- stuff/Keep_one.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 stuff/Keep_one.sh diff --git a/stuff/Keep_one.sh b/stuff/Keep_one.sh new file mode 100755 index 000000000..ea57bf11b --- /dev/null +++ b/stuff/Keep_one.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# get a list of genres,and countries +curl -s http://keepone.net/genre | htmlq -a href a | grep genre | sort | uniq | awk -F '/' '{print $3}' | awk NF > genres.txt +curl -s http://keepone.net/countries | htmlq -a href a | grep land | sort | uniq | awk -F '/' '{print $3"/"$4}' | awk NF > countries.txt + +# get the links to genres +for i in "" \&page={2..25} ; do for j in $(cat genres.txt) ; do curl -s http://keepone.net/genre/$j$i | htmlq -a href a | grep "/radio/" | uniq | cut -c8- >> A-$j.txt ; echo -e "$j - $i" ; done ; done + +# get the links to countires +for i in "" \&page={2..25} ; do for j in $(cat countries.txt) ; do curl -s http://keepone.net/land/$j$i | htmlq -a href a | grep "/radio/" | uniq | cut -c8- >> A-$(echo $j | awk -F '/' '{print $NF}').txt ; echo -e "$j - $i" ; done ; done + +# scarpe the streams from each page +for i in A-*.txt ; do for j in $(cat $i) ; do curl -s http://keepone.net/radio/$j > mep1 ; cat mep1 | htmlq -t h1 | awk '{print "#EXTINF:-1,"$0}' >> A$i ; cat mep1 | grep "> A$i ; echo -e "$i - $j" ; done ; done + +# remove streams that didn't have links +for i in AA-*.txt ; do cat $i | awk '!seen[$0]++' | grep -B1 "http" | grep -A1 "EXTINF" | awk 'length>4' > A$i ; echo -e $i ; done + +# convert links to m3u streams +for i in AAA-*.txt ; do sed '1s/^/#EXTM3U\n/' $i > $i.m3u ; done + +# remove AAA- and double extensions in streams +for i in *.m3u ; do mv "$i" "`echo $i | sed -e 's/AAA-//' -e 's/.txt//'`" ; done