First commit

This commit is contained in:
root
2023-03-28 20:34:55 +02:00
parent bec47d865a
commit a95e2c1237
13 changed files with 2284 additions and 0 deletions

17
pipevavoo/pipevavoo-Spain.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
url="http://www2.vavoo.to/live2/index"
wget -q --no-check-certificate $url
cat index | sed "s#http://#pipe:///opt/pipevavoo/ffpipe.sh http://#g" > index.m3u
for country in Spain; do
cat index.m3u | grep -E -A1 =\"$country > $country.m3u
#m3u
echo "#EXTM3U" > /opt/pipevavoo/pipevavoo-$country.m3u
cat $country.m3u >> /opt/pipevavoo/pipevavoo-$country.m3u
rm -rf $country.m3u
done
rm -rf index.m3u
rm index*
exit 0