railive/RAI1.sh

15 lines
382 B
Bash
Raw Normal View History

2016-10-13 11:41:16 +02:00
#!/bin/bash
2016-10-13 12:34:13 +02:00
# rai 1
2016-10-13 11:41:16 +02:00
wget -d "http://mediapolis.rai.it/relinker/relinkerServlet.htm?cont=2621467&output=45" -U "iphone" -O p.txt
grep http p.txt >temp.txt
sed -e 's/<url type="content">//g' temp.txt >temp2.txt
cat temp2.txt
sed -e 's/<\/url>//g' temp2.txt >temp.txt
dos2unix temp.txt
surce=`cat temp.txt`
echo $surce
mpv --hls-bitrate=max "$surce"
2016-10-13 11:41:16 +02:00
rm p.txt
rm temp.txt
rm temp2.txt