forked from alesnav/p2ptv-pi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtv.sh
executable file
·292 lines (274 loc) · 8.52 KB
/
tv.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#!/bin/bash
PRG=$0
VERSION="p2ptv-pi v3.0"
DIR="$( cd "$( dirname "$0" )" && pwd )"
xbmc_start="sudo service xbmc start"
xbmc_stop="sudo service xbmc stop"
xbmc_start="sudo service xbmc restart"
let i=0
while read line || [[ -n "${line}" ]]; do ((++i))
[[ "$line" =~ ^#.*$ ]] && continue
TIPOS_CANAL[$i]=`echo ${line} | cut -d ";" -f1 | tr 'a-z' 'A-Z'`
CANALES[$i]=`echo ${line} | cut -d ";" -f2`
ENLACES[$i]=`echo ${line} | cut -d ";" -f3`
done < "${DIR}/canales.txt"
usage()
{
echo "${VERSION}"
echo ""
echo "Uso: ${PRG} [OPCIONES]"
echo ""
echo "Opciones:"
echo " -h Muestra este menú."
echo " -v Muestra la versión."
echo " -s [0|1] Apaga OMXPlayer y cierra la conexión P2P TV. 0: No iniciar XBMC. 1: Iniciar XBMC."
echo " -l Lista de todos los canales preconfigurados."
echo " -p [n] Muestra la programación de ArenaVision para el dia indicado."
echo " [n] indica el día de la programación, siendo 0 el día actual, 1 el día siguiente, etc."
echo " -c [CANAL] Indica el canal a cargar (ver formatos admitidos)."
echo " -o [0|1] Apaga XBMC e inicia OMXPlayer. 0: Salida de video por defecto. 1: Salida por HDMI."
echo " -t [n] Indica el tiempo en segundos a esperar para la carga del canal antes de iniciar OMXPlayer (15 por defecto)."
echo ""
echo "Formatos admitidos para [CANAL]:"
echo " - Código de canal de uno de los canales preconfigurados (opción -l). Ejemplo: ./tv.sh -c 1"
echo " - Enlace completo de Sopcast. Ejemplo: ./tv.sh -c sop://broker.sopcast.com:3912/150577"
echo " - Enlace completo de AceStream. Ejemplo: ./tv.sh -c acestream://ff6d068d982f5ac218d164cf43f97dc39926cf55"
}
stop_playing()
{
if [[ -f ${DIR}/p2ptv-pi.pid ]]; then
kill -9 $(cat ${DIR}/p2ptv-pi.pid) > /dev/null 2>&1
rm -f ${DIR}/p2ptv-pi.pid
echo "Reproducción detenida"
fi
kill -2 $(pidof -x omxplayer.bin) > /dev/null 2>&1
listening=1
while [ -n "${listening}" ]; do
listening=`netstat -na | grep 6878 | grep LISTEN | tail -1`
sleep 1
done
if [[ ${XBMC} -eq 1 ]]; then
if ps ax | grep -v grep | grep xbmc > /dev/null; then
echo "Reiniciando XBMC..."
${xbmc_restart}
else
echo "Iniciando XBMC..."
${xbmc_start}
fi
fi
}
get_sopcast_link()
{
url_tmp=$1
sopcast_link_tmp=`wget ${url_tmp} -O - ${DIR}/page.html -o /dev/null | grep "sop://" | tail -1 | awk 'BEGIN {FS="sop://"} {print $2}' | cut -d " " -f1 | cut -d "\"" -f1`
if ! [[ ${sopcast_link: -1} =~ ^[0-9]+$ ]]; then
sopcast_link_tmp=${sopcast_link_tmp%?}
fi
sopcast_link="sop://${sopcast_link_tmp}"
echo "${sopcast_link}"
}
get_acestream_link()
{
url_tmp=$1
acestream_link_tmp=`wget ${url_tmp} -O - -o /dev/null | grep "this.loadPlayer" | cut -d '"' -f2`
acestream_link="acestream://${acestream_link_tmp}"
if [[ "${acestream_link}" == "acestream://" ]]; then
acestream_link=`wget ${url_tmp} -O - -o /dev/null | grep "this.loadTorrent" | cut -d '"' -f2`
fi
echo "${acestream_link}"
}
list_channels()
{
printf "ID\tCanal\n"
for i in "${!CANALES[@]}"; do
printf "%s\t%s\n" "$i" "${CANALES[$i]} (${TIPOS_CANAL[$i]})"
done
}
show_schedule()
{
w3m -dump http://go.arenavision.in/p/agendaschedule.html -cols 500 | grep `date +%d/%m/%y -d "+$1 days"`
}
[[ $# -lt 1 ]] && usage && exit 1
while getopts ":hVvp:t:s:lo:c:" OPTION
do
case "$OPTION" in
h)
usage
exit 1
;;
V)
echo "${VERSION}"
exit 1
;;
v)
VERBOSE=1
;;
p)
re='^[0-9]+$'
if ! [[ ${OPTARG} =~ ${re} ]] ; then
usage
exit 1
else
SCH_DAYS="${OPTARG}"
show_schedule ${SCH_DAYS}
exit 0
fi
;;
t)
re='^[0-9]+$'
if ! [[ ${OPTARG} =~ ${re} ]] ; then
usage
exit 1
else
WAIT="${OPTARG}"
fi
;;
s)
if [ "${OPTARG}" == "1" ]; then
XBMC=1
else
XBMC=0
fi
stop_playing
exit 1
;;
l)
list_channels
exit 1
;;
o)
OMXPLAYER=1;
if [ "${OPTARG}" == "1" ]; then
OMX_HDMI=1
else
OMX_HDMI=0
fi
;;
c)
CANAL=${OPTARG}
;;
?)
usage
exit 1
;;
esac
done
if [[ ${CANAL} == sop://* ]]; then
ENLACE_P2P=${CANAL}
ENLACE_OMXPLAYER="http://127.0.0.1:6878"
TEXTO="Cargando canal Sopcast ${ENLACE_P2P}..."
NOMBRE_CANAL=${CANAL}
TIPO_CANAL="SOPCAST"
elif [[ ${CANAL} == acestream://* ]]; then
ENLACE_P2P=${CANAL}
ENLACE_OMXPLAYER=`echo ${ENLACE_P2P} | awk 'BEGIN {FS="acestream://"} {print "http://127.0.0.1:6878/LOAD/PID="$2}'`
TEXTO="Cargando canal AceStream ${ENLACE_P2P}..."
NOMBRE_CANAL=${CANAL}
TIPO_CANAL="ACESTREAM"
elif [[ ${CANAL} =~ ^[0-9]+$ ]] && [[ -n ${ENLACES[${CANAL}]} ]] && [[ "${TIPOS_CANAL[${CANAL}]}" == "SOPCAST" ]]; then
if [[ ${ENLACES[${CANAL}]} == sop://* ]]; then
ENLACE_P2P=${ENLACES[${CANAL}]}
ENLACE_OMXPLAYER="http://127.0.0.1:6878"
TEXTO="Cargando canal Sopcast ${CANALES[${CANAL}]} (${ENLACE_P2P})..."
NOMBRE_CANAL=${CANALES[${CANAL}]}
TIPO_CANAL="SOPCAST"
elif [[ ${ENLACES[${CANAL}]} == http* ]]; then
ENLACE_P2P=`get_sopcast_link ${ENLACES[${CANAL}]}`
ENLACE_OMXPLAYER="http://127.0.0.1:6878"
TEXTO="Cargando canal Sopcast ${CANALES[${CANAL}]} (${ENLACE_P2P})..."
NOMBRE_CANAL=${CANALES[${CANAL}]}
TIPO_CANAL="SOPCAST"
fi
elif [[ ${CANAL} =~ ^[0-9]+$ ]] && [[ -n ${ENLACES[${CANAL}]} ]] && [[ "${TIPOS_CANAL[${CANAL}]}" == "ACESTREAM" ]]; then
if [[ ${ENLACES[${CANAL}]} == acestream://* ]]; then
ENLACE_P2P=${ENLACES[${CANAL}]}
ENLACE_OMXPLAYER=`echo ${ENLACE_P2P} | awk 'BEGIN {FS="acestream://"} {print "http://127.0.0.1:6878/LOAD/PID="$2}'`
TEXTO="Cargando canal AceStream ${CANALES[${CANAL}]} (${ENLACE_P2P})..."
NOMBRE_CANAL=${CANALES[${CANAL}]}
TIPO_CANAL="ACESTREAM"
elif [[ ${ENLACES[${CANAL}]} == http* ]]; then
ENLACE_P2P=`get_acestream_link ${ENLACES[${CANAL}]}`
if [[ ${ENLACE_P2P} == acestream://* ]]; then
ENLACE_OMXPLAYER=`echo ${ENLACE_P2P} | awk 'BEGIN {FS="acestream://"} {print "http://127.0.0.1:6878/LOAD/PID="$2}'`
elif [[ ${ENLACE_P2P} == http* ]]; then
ENLACE_OMXPLAYER="http://127.0.0.1:6878/LOAD/TORRENT=${ENLACE_P2P}"
fi
TEXTO="Cargando canal AceStream ${CANALES[${CANAL}]} (${ENLACE_P2P})..."
NOMBRE_CANAL=${CANALES[${CANAL}]}
TIPO_CANAL="ACESTREAM"
fi
elif [[ ${CANAL} =~ ^https?://.*\.acelive$ ]]; then
ENLACE_P2P=${CANAL}
ENLACE_OMXPLAYER="http://127.0.0.1:6878/LOAD/TORRENT=${CANAL}"
TEXTO="Cargando canal AceStream ${CANAL}..."
NOMBRE_CANAL=${CANAL}
TIPO_CANAL="ACESTREAM"
else
usage
exit 1
fi
stop_playing
echo "${TEXTO}"
if [[ "${TIPO_CANAL}" == "SOPCAST" ]]; then
if [[ ${VERBOSE} -eq 1 ]];then
echo "Comando: nice -10 ${DIR}/sopcast/qemu-i386 ${DIR}/sopcast/lib/ld-linux.so.2 --library-path ${DIR}/sopcast/lib ${DIR}/sopcast/sp-sc-auth ${ENLACE_P2P} 1234 6878 > /dev/null 2>&1 & echo $! > ${DIR}/p2ptv-pi.pid"
fi
nice -10 ${DIR}/sopcast/qemu-i386 ${DIR}/sopcast/lib/ld-linux.so.2 --library-path ${DIR}/sopcast/lib ${DIR}/sopcast/sp-sc-auth ${ENLACE_P2P} 1234 6878 > /dev/null 2>&1 & echo $! > ${DIR}/p2ptv-pi.pid
elif [[ "${TIPO_CANAL}" == "ACESTREAM" ]]; then
if [[ ${VERBOSE} -eq 1 ]];then
echo "Comando: nice -10 ${DIR}/acestream/start.py > /dev/null 2>&1 & echo $! > ${DIR}/p2ptv-pi.pid"
fi
nice -10 ${DIR}/acestream/start.py > /dev/null 2>&1 & echo $! > ${DIR}/p2ptv-pi.pid
sleep 10
fi
let timeout=0
while [ ${timeout} -lt 60 ]; do ((++i))
listening=`netstat -na | grep 6878 | grep LISTEN | tail -1`
if [[ "${TIPO_CANAL}" == "SOPCAST" ]]; then
process=`ps aux | grep qemu-i386 | grep -v grep`
elif [[ "${TIPO_CANAL}" == "ACESTREAM" ]]; then
process=`ps aux | grep "acestream/start.py" | grep -v grep`
fi
if [ -n "${listening}" ]; then
if [[ ${VERBOSE} -eq 1 ]];then
echo "El puerto de ${TIPO_CANAL} (6878) ya está la escucha."
fi
break
elif [ -z "${process}" ]; then
if [[ ${VERBOSE} -eq 1 ]];then
echo "El proceso ${TIPO_CANAL} ya no existe."
fi
echo "Imposible conectar al canal especificado"
stop_playing
exit 1
else
if [[ ${VERBOSE} -eq 1 ]];then
echo "Esperando 2 segundos a que el puerto 6878 esté a la escucha..."
fi
sleep 2
fi
done
echo "Conectado al canal ${NOMBRE_CANAL} (${TIPO_CANAL})"
if [[ ${OMXPLAYER} -eq 1 ]]; then
if ps ax | grep -v grep | grep xbmc > /dev/null; then
echo "Apagando XBMC..."
${xbmc_stop}
fi
if [[ -z ${WAIT} ]]; then
WAIT=15
fi
echo "Esperando ${WAIT} segundos..."
sleep ${WAIT}
echo "Iniciando OMXPlayer..."
if [[ ${OMX_HDMI} -eq 1 ]]; then
echo "Activando salida por HDMI..."
start_omx="nice -10 omxplayer -r -o hdmi --live ${ENLACE_OMXPLAYER} > /dev/null 2>&1 &"
else
start_omx="nice -10 omxplayer -r --live ${ENLACE_OMXPLAYER} > /dev/null 2>&1 &"
fi
if [[ ${VERBOSE} -eq 1 ]]; then
echo "Comando: ${start_omx}"
fi
${DIR}/start_omxplayer.sh "${start_omx}" > /dev/null 2>&1 &
fi
exit 0