source: titan/mediathek/localhoster/hoster.sh @ 41373

Last change on this file since 41373 was 41373, checked in by obi, 5 years ago

tithek add livehoster assia.tv

  • Property svn:executable set to *
File size: 18.9 KB
Line 
1#!/bin/sh
2# first sh box hoster for titannit mfg obi
3
4TYPE=$1
5INPUT=$2
6DEST=$3
7USER=$DEST
8PASS=$4
9
10INPUT=`echo $INPUT | sed 's!/Out/?s=!!g'`
11
12#FILENAME="`echo $SRC | tr '/' '\n' | tail -n1 | sed 's/.sh//'` $INPUT $PAGE $NEXT"
13FILENAME="`echo $INPUT | sed -e 's/\-\+/./g' | sed -e 's/\+\+/./g' | sed -e 's/\&\+/./g' -e 's#\/\+#.#g' -e 's/\?\+/./g' -e 's/:\+/./g' -e 's/;\+/./g' -e 's/=\+/./g' -e 's/ \+/./g' -e 's/\.\+/./g'`"
14PICNAME=`echo $FILENAME`
15
16if [ -z "$FILENAME" ]; then
17        FILENAME=none
18fi
19
20
21ARCH=`cat /etc/.arch`
22BOX=`cat /etc/model`
23TMP=/tmp/localcache
24CMD=/tmp/localhoster
25BIN="$CMD"/bin/python."$ARCH"
26HLSBIN="$CMD"/bin/hlsdl."$ARCH"
27#USERAGENT='Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.0'
28USERAGENT='Mozilla%2F5.0+%28Windows+NT+6.3%3B+rv%3A36.0%29+Gecko%2F20100101+Firefox%2F36.0'
29debuglevel=`cat /mnt/config/titan.cfg | grep debuglevel | cut -d"=" -f2`
30curlbin="curl -k -s -L --cookie /mnt/network/cookies --cookie-jar /mnt/network/cookies -A $USERAGENT"
31curlbin2="curl -k -s --cookie /mnt/network/cookies --cookie-jar /mnt/network/cookies -A $USERAGENT"
32youtubebin="$CMD/lib/youtube_dl/__main__.py --no-check-certificate --cookies /mnt/network/cookies --user-agent $USERAGENT --format mp4 --restrict-filenames --ignore-errors -g"
33youtubebinbg="$CMD/lib/youtube_dl/__main__.py --no-check-certificate --cookies /mnt/network/cookies --user-agent $USERAGENT --format mp4 --restrict-filenames --ignore-errors --output"
34hlsdlbg="$HLSBIN -u $USERAGENT -o"
35
36export PYTHONHOME=/tmp/localhoster
37export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/tmp/localhoster/lib
38
39
40if [ "$debuglevel" == "99" ]; then curlbin="$curlbin -v"; fi
41if [ "$debuglevel" == "99" ]; then curlbin2="$curlbin2 -v"; fi
42if [ "$debuglevel" == "99" ]; then youtubebin="$youtubebin --verbose"; fi
43
44wgetbin="wget -q -T2"
45
46if [ ! -e "/tmp/localhoster/lib/python2.7/lib-dynload" ] && [ -e /tmp/localhoster/lib/python2.7/lib-dynload."$ARCH" ];then
47#       ln -fs /tmp/localhoster/lib/python2.7/lib-dynload."$ARCH" /tmp/localhoster/lib/python2.7/lib-dynload
48        mv -f /tmp/localhoster/lib/python2.7/lib-dynload."$ARCH" /tmp/localhoster/lib/python2.7/lib-dynload
49        rm -rf /tmp/localhoster/lib/python2.7/lib-dynload.*
50fi
51if [ ! -e "/tmp/localhoster/lib/libpython2.7.so.1.0" ] && [ -e /tmp/localhoster/lib/libpython2.7.so.1.0."$ARCH" ];then
52#       ln -fs /tmp/localhoster/lib/libpython2.7.so.1.0."$ARCH" /tmp/localhoster/lib/libpython2.7.so.1.0
53        mv -f /tmp/localhoster/lib/libpython2.7.so.1.0."$ARCH" /tmp/localhoster/lib/libpython2.7.so.1.0
54        rm -f /tmp/localhoster/lib/libpython2.7.so.1.0.*
55fi
56if [ ! -e "/tmp/localhoster/lib/libcrypto.so.1.0.0" ] && [ -e /tmp/localhoster/lib/libcrypto.so.1.0.0."$ARCH" ];then
57#       ln -fs /tmp/localhoster/lib/libcrypto.so.1.0.0."$ARCH" /tmp/localhoster/lib/libcrypto.so.1.0.0
58        mv -f /tmp/localhoster/lib/libcrypto.so.1.0.0."$ARCH" /tmp/localhoster/lib/libcrypto.so.1.0.0
59        rm -f /tmp/localhoster/lib/libcrypto.so.1.0.0.*
60fi
61if [ ! -e "/tmp/localhoster/lib/libssl.so.1.0.0" ] && [ -e /tmp/localhoster/lib/libssl.so.1.0.0."$ARCH" ];then
62#       ln -fs /tmp/localhoster/lib/libssl.so.1.0.0."$ARCH" /tmp/localhoster/lib/llibssl.so.1.0.0
63        mv -f /tmp/localhoster/lib/libssl.so.1.0.0."$ARCH" /tmp/localhoster/lib/libssl.so.1.0.0
64        rm -f /tmp/localhoster/lib/libssl.so.1.0.0.*
65fi
66
67if [ -e "$TMP/hoster.tar" ]; then rm -f $TMP/hoster.tar; fi
68if [ -e "$TMP/parser.tar" ]; then rm -f $TMP/parser.tar; fi
69
70if [ "$ARCH" == "sh4" ] && [ "$BOX" != "ufs912" ]; then
71        if [ -e "$CMD/lib/python2.7/lib-dynload.mipsel" ]; then rm -rf $CMD/lib/python2.7/lib-dynload.mipsel; fi
72        if [ -e "$CMD/lib/python2.7/lib-dynload.arm" ]; then rm -rf $CMD/lib/python2.7/lib-dynload.arm; fi
73
74        if [ -e "$CMD/lib/libpython2.7.so.1.0.mipsel" ]; then rm -rf $CMD/lib/libpython2.7.so.1.0.mipsel; fi
75        if [ -e "$CMD/lib/libpython2.7.so.1.0.arm" ]; then rm -rf $CMD/lib/libpython2.7.so.1.0.arm; fi
76
77        if [ -e "$CMD/lib/libssl.so.1.0.0.mipsel" ]; then rm -rf $CMD/lib/libssl.so.1.0.0.mipsel; fi
78        if [ -e "$CMD/lib/libssl.so.1.0.0.arm" ]; then rm -rf $CMD/lib/libssl.so.1.0.0.arm; fi
79
80        if [ -e "$CMD/lib/libcrypto.so.1.0.0.mipsel" ]; then rm -rf $CMD/lib/libcrypto.so.1.0.0.mipsel; fi
81        if [ -e "$CMD/lib/libcrypto.so.1.0.0.arm" ]; then rm -rf $CMD/lib/libcrypto.so.1.0.0.arm; fi
82fi
83
84hostercheck=`echo $INPUT | tr 'A-Z' 'a-z' | sed 's!://!\n!' | cut -d'/' -f1 | tail -n1 | tr '.' '\n' | wc -l`
85hosterline=`expr $hostercheck - 1`
86hoster=`echo $INPUT | tr 'A-Z' 'a-z' | sed 's!://!\n!' | cut -d'/' -f1 | tail -n1 | cut -d"." -f$hosterline`
87#echo $hoster
88
89ecostream()
90{
91        hosterurl=http://www.ecostream.tv
92        data="tpm=`$curlbin $INPUT | grep footerhash | cut -d"'" -f2``$curlbin $INPUT | grep superslots | cut -d"'" -f2`&id=`$curlbin $INPUT | grep data-id | cut -d'"' -f4`"
93        streampage=`$curlbin $hosterurl/js/ecoss.js | grep "$.post('" | grep videos | cut -d"'" -f2`
94        streamurl=$hosterurl`$curlbin -H "X-Requested-With: XMLHttpRequest" -X POST --data "$data" --referer $INPUT $hosterurl/$streampage | cut -d'"' -f6`
95        if [ "`echo $streamurl | grep DOCTYPE | wc -l`" -eq 0 ] && [ "$streamurl" != "$hosterurl" ];then
96                echo $streamurl
97        fi
98}
99
100giga()
101{
102        streampage=`$curlbin $INPUT | grep "<iframe src=" | cut -d'"' -f2 | head -n1`
103        streamurl=`$curlbin $streampage | grep '{file:' | cut -d'"' -f2 | grep 1080p`
104        if [ -z "$streamurl" ];then
105                streamurl=`$curlbin $streampage | grep '{file:' | cut -d'"' -f2 | grep 720p`
106        fi
107        if [ -z "$streamurl" ];then
108                streamurl=`$curlbin $streampage | grep '{file:' | cut -d'"' -f2 | grep 480p`
109        fi
110        if [ -z "$streamurl" ];then
111                streamurl=`$curlbin $streampage | grep '{file:' | cut -d'"' -f2 | grep 360p`
112        fi
113        if [ -z "$streamurl" ];then
114                streamurl=`$curlbin $streampage | grep '{file:' | cut -d'"' -f2 | grep 240p`
115        fi
116        if [ -z "$streamurl" ];then
117                streamurl=`$curlbin $streampage | grep '{file:' | cut -d'"' -f2 | grep 180p`
118        fi
119        echo $streamurl
120}
121
122vidup()
123{
124        $BIN $CMD/vidup.py $INPUT
125}
126
127nosvideo()
128{
129        $BIN $CMD/nosvideo.py $INPUT
130}
131
132allmyvideos()
133{
134        $BIN $CMD/allmyvideos.py $INPUT
135}
136
137flashx()
138{
139        $BIN $CMD/flashx.py $INPUT
140}
141
142openload()
143{
144        $BIN $CMD/openload.py $INPUT
145}
146
147briskfile()
148{
149        $BIN $CMD/briskfile.py $INPUT
150}
151
152vodlockerold()
153{
154        $BIN $CMD/vodlocker.py $INPUT
155}
156
157videoweed()
158{
159        $BIN $CMD/videoweed.py $INPUT
160}
161
162vodzi()
163{
164        $BIN $CMD/vodzi.py $INPUT
165}
166
167youwatch()
168{
169        $BIN $CMD/youwatch.py $INPUT
170}
171
172thevideo()
173{
174        $BIN $CMD/thevideo.py $INPUT
175}
176
177movshare()
178{
179        $BIN $CMD/movshare.py $INPUT
180}
181
182streamcloud()
183{
184        $BIN $CMD/streamcloud.py $INPUT
185}
186
187vidzi()
188{
189        $BIN $CMD/vidzi.py $INPUT
190}
191
192vivo()
193{
194        $BIN $CMD/vivo.py $INPUT
195}
196
197vidto()
198{
199        $BIN $CMD/vidto.py $INPUT
200}
201
202goldesel()
203{
204        $BIN $CMD/goldesel.py $INPUT
205}
206
207cloudflare()
208{
209        $BIN $CMD/cloudflare.py $INPUT
210}
211
212nowvideo()
213{
214        $BIN $CMD/nowvideo.py $INPUT
215}
216
217divxstage()
218{
219        $BIN $CMD/divxstage.py $INPUT
220}
221
222novamov()
223{
224        $BIN $CMD/novamov.py $INPUT
225}
226
227xvidstage()
228{
229        $BIN $CMD/xvidstage.py $INPUT
230}
231
232waaw()
233{
234        $BIN $CMD/waaw.py $INPUT
235}
236
237streamango()
238{
239        $BIN $CMD/streamango.py $INPUT
240}
241
242vidlox()
243{
244        $BIN $CMD/vidlox.py $INPUT
245}
246
247vodlocker()
248{
249        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
250
251        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
252        if [ -e "$STREAMLIST" ];then
253                rm -f $STREAMLIST > /dev/null 2>&1
254        fi
255
256        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.1
257        cat $TMP/cache.hoster.$hoster.1 | sed 's/<source src=/\nfound=/g' | grep ^found= | cut -d"'" -f2 >$TMP/cache.hoster.$hoster.1.url1
258        URL=`cat $TMP/cache.hoster.$hoster.1.url1`
259
260        if [ ! -z "$URL" ];then
261                echo "$URL" >> $STREAMLIST
262        fi
263
264        URL=$STREAMLIST
265
266        echo "$URL"
267}
268
269aliezold()
270{
271        URL=`$curlbin "$INPUT" | sed 's/source:/\nsource:/' | grep ^source: | cut -d"'" -f2`
272        REFERER=`echo "$INPUT" | sed -e 's/=/3D/g' -e 's/&/26/g'`
273        echo "$URL|Referer=$REFERER&User-Agent=$USERAGENT"
274}
275
276aliez()
277{
278        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
279        #http://emb.aliez.me/player/live.php?id=56180&w=700&h=480"
280        REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
281        EXTRA="|Referer=$REFERER&User-Agent=$USERAGENT"
282
283        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
284        if [ -e "$STREAMLIST" ];then
285                rm -f $STREAMLIST > /dev/null 2>&1
286        fi
287
288        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.1
289        cat $TMP/cache.hoster.$hoster.1 | sed 's/source:/\nfound=/' | grep ^found= | cut -d"'" -f2 >$TMP/cache.hoster.$hoster.url1
290        URL=`cat $TMP/cache.hoster.$hoster.url1 | head -n1`
291        if [ ! -z "$URL" ];then
292                echo "$URL$EXTRA" >> $STREAMLIST
293        fi
294#       URL=""
295        #file:  'http://a3.aliez.me:8080/hls/streama57449/index.m3u8?st=dgw2dOq8tyFkLLBLn2ycXA',
296
297        cat $TMP/cache.hoster.$hoster.1 | sed 's/file:/\nfound=/' | grep ^found= | cut -d"'" -f2 >$TMP/cache.hoster.$hoster.url2
298        URL=`cat $TMP/cache.hoster.$hoster.url2 | head -n1`
299        if [ ! -z "$URL" ];then
300                echo "$URL$EXTRA" >> $STREAMLIST
301        fi
302#URL=""
303        #"file":                "rtmp%3A%2F%2Fa3.aliez.me%2Flive%2Fstreama57449%3Ftoken%3Dd11304fabb8e64327df8427e1c2fd5d9"
304        cat $TMP/cache.hoster.$hoster.1 | sed 's/"file":/\nfound=/' | grep ^found= | cut -d'"' -f2 >$TMP/cache.hoster.$hoster.url3
305        URL=`cat $TMP/cache.hoster.$hoster.url3 | head -n1`
306
307        if [ "`echo $URL | grep rtmp | wc -l`" -eq 1 ];then
308                #new swfobject.embedSWF("http://i.aliez.me/swf/playernew.swf?0", "mediaspace", "700", "480", "9.0.115.0", false, flashvars, params);
309                cat $TMP/cache.hoster.$hoster.1 | sed 's/swfobject.embedSWF/\nfound=/' | grep ^found= | cut -d'"' -f2 >$TMP/cache.hoster.$hoster.url3.rtmp.swfurl
310                SWFURL=`cat $TMP/cache.hoster.$hoster.url3.rtmp.swfurl | head -n1`
311                URL=`echo "$URL" | sed -e 's/%3A/:/g' -e 's!%2F!/!g' -e 's!%3D!=!g' -e 's!%3F!?!g'`
312                EXTRA=" pageUrl=$REFERER"
313                if [ ! -z "$SWFURL" ];then
314                        EXTRA="$EXTRA swfUrl=$SWFURL swfVfy=1 timeout=15 live=1"
315                fi
316                if [ ! -z "$URL" ];then
317                        echo "$URL$EXTRA" >> $STREAMLIST
318                fi
319        fi
320        URL=$STREAMLIST
321
322
323        echo "$URL"
324}
325
326sport7()
327{
328        #http://sport7.tech/487b826914d11080dce4b502052b012d-live.html
329        #var videoLink = 'http://g4.securestream.sport7.tech/stream/NzYyZDUwZWNkODc5YWM5YjViY2ZkOTVhZGNjOGM1ZTc=/BTSport3.m3u8';
330
331        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
332        REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
333        EXTRA="|Referer=$REFERER&User-Agent=$USERAGENT"
334
335        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
336        if [ -e "$STREAMLIST" ];then
337                rm -f $STREAMLIST > /dev/null 2>&1
338        fi
339
340        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.1
341        cat $TMP/cache.hoster.$hoster.1 | sed 's/var videoLink/\nfound=/' | grep ^found= | cut -d"'" -f2 >$TMP/cache.hoster.$hoster.url1
342        URL=`cat $TMP/cache.hoster.$hoster.url1 | head -n1`
343        # enable httponly cookie
344        sed 's/#HttpOnly_//g' -i /mnt/network/cookies
345
346        if [ ! -z "$URL" ];then
347                echo "$URL$EXTRA" > $STREAMLIST
348                #echo "$URL$EXTRA"
349                echo "$STREAMLIST"
350        fi
351       
352       
353#       URL=`$curlbin "$INPUT" | sed 's/var videoLink/\nfound=/' | grep ^found= | cut -d"'" -f2`
354#       REFERER=`echo "$INPUT" | sed -e 's/=/3D/g' -e 's/&/26/g'`
355#       sed 's/#HttpOnly_//g' -i /mnt/network/cookies
356#       echo "$URL|Referer=$REFERER&X-f=96.91.79.87&User-Agent=$USERAGENT"
357#       cat $STREAMLIST
358}
359
360sportstream365()
361{
362        #http://sport7.tech/487b826914d11080dce4b502052b012d-live.html
363        #var videoLink = 'http://g4.securestream.sport7.tech/stream/NzYyZDUwZWNkODc5YWM5YjViY2ZkOTVhZGNjOGM1ZTc=/BTSport3.m3u8';
364
365        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
366#       REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
367        REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
368        EXTRA="|Referer=$REFERER&User-Agent=$USERAGENT"
369
370        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
371        if [ -e "$STREAMLIST" ];then
372                rm -f $STREAMLIST > /dev/null 2>&1
373        fi
374
375        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.1
376
377        #<input type="hidden" name="game" value="146875046">
378        id=$(cat $TMP/cache.hoster.$hoster.1 | sed -nr 's/.*name="game" value="([^"]+)".*/\1/p')
379        ts=$(date +%s)
380        URL="http://sportstream365.com/LiveFeed/GetGame?id=$id&partner=24"
381
382        $curlbin "$URL" --referer "$REFERER" -H "X-Requested-With: ShockwaveFlash/27.0.0.187" -o $TMP/cache.hoster.$hoster.2
383
384
385        #"VI":"1032572"
386        id=$(cat $TMP/cache.hoster.$hoster.2 | sed -nr 's/.*"VI" :"([^"]+)".*/\1/p')
387        if [ -z "$id" ];then
388                id=$(cat $TMP/cache.hoster.$hoster.2 | sed -nr 's/.*"VI":"([^"]+)".*/\1/p')
389        fi
390        #https://github.com/XvBMC/repository.xvbmc/blob/master/Dependencies/script.module.liveresolver/lib/liveresolver/resolvers/sportstream365.py
391        URL=http://93.189.57.254/edge0/xrecord/$id/prog_index.m3u8
392        # enable httponly cookie
393        sed 's/#HttpOnly_//g' -i /mnt/network/cookies
394
395        if [ ! -z "$URL" ];then
396                echo "$URL$EXTRA" > $STREAMLIST
397                #echo "$URL$EXTRA"
398                echo "$STREAMLIST"
399        fi
400}
401
402sportsonline()
403{
404        #http://sportsonline.pw/livetv/pt-sporttv1.html
405        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
406        REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
407        EXTRA="|Referer=$REFERER&User-Agent=$USERAGENT"
408
409        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
410        if [ -e "$STREAMLIST" ];then
411                rm -f $STREAMLIST > /dev/null 2>&1
412        fi
413
414        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.1
415
416        #<iframe src="http://widestream.io/embedClappr.php?live=13593" width="100%" height="100%" scrolling="no" frameborder="0" allowfullscreen="true"></iframe>
417        TMPURL=$(cat $TMP/cache.hoster.$hoster.1 | sed -nr 's/.*iframe src="([^"]+)".*/\1/p')
418
419        $curlbin "$TMPURL" --referer "$REFERER" -H "X-Requested-With: ShockwaveFlash/27.0.0.187" -o $TMP/cache.hoster.$hoster.2
420
421        #source: "http://ultra.widestream.io:8081/wideedge/1022qvk/playlist.m3u8?wmsAuthSign=c2VydmVyX3RpbWU9MTIvOS8yMDE3IDEyOjMyOjQzIEFNJmhhc2hfdmFsdWU9ZW9WeThRL0JmaVA2dnFUQm15Ukkvdz09JnZhbGlkbWludXRlcz0yMA==",
422        TMPURL=$(cat $TMP/cache.hoster.$hoster.2 | sed -nr 's/.*source: "([^"]+)".*/\1/p')
423
424        if [ ! -z "$TMPURL" ];then
425                echo "$TMPURL$EXTRA" > $STREAMLIST
426                #echo "$URL$EXTRA"
427                echo "$STREAMLIST"
428        fi
429}
430
431assia()
432{
433        #http://assia.tv/live/gol-tv/?lang=ru
434        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
435        REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
436        EXTRA="|Referer=$REFERER&User-Agent=$USERAGENT"
437
438        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
439        if [ -e "$STREAMLIST" ];then
440                rm -f $STREAMLIST > /dev/null 2>&1
441        fi
442
443        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.1
444
445        #this.videoplayer2600 = new Uppod({m:"video",uid:"videoplayer2600",comment:"",file:"http://video.assia.tv/hls/50.m3u8?md5=UD9zcmEXXgjdB92hTu9_nw&expires=1512784272",st:"uppodvideo",onReady: function(uppod){setTimeout(uppod.Pause, 60000);}});
446        TMPURL=$(cat $TMP/cache.hoster.$hoster.1 | sed -nr 's/.*file:"([^"]+)".*/\1/p' | tail -n1)
447
448        if [ ! -z "$TMPURL" ];then
449                echo "$TMPURL$EXTRA" > $STREAMLIST
450                #echo "$URL$EXTRA"
451                #http://video.assia.tv/hls/50.m3u8?md5=olw9K2ANtWtCPiL6LreprA&expires=1512783904|User-Agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.90 Safari/537.36
452
453                echo "$STREAMLIST"
454        fi
455}
456
457all()
458{
459        rm -f $TMP/cache.hoster.$hoster.* > /dev/null 2>&1
460        REFERER=`echo "$INPUT" | sed -e 's/=/%3D/g' -e 's/&/%26/g'`
461        EXTRA="|Referer=$REFERER&User-Agent=$USERAGENT"
462
463        STREAMLIST="$TMP/$TYPE.$hoster.$FILENAME.streamlist"
464        if [ -e "$STREAMLIST" ];then
465                rm -f $STREAMLIST > /dev/null 2>&1
466        fi
467
468        rm $TMP/cache.$PARSER.$INPUT.$FROM.1 > /dev/null 2>&1
469
470        $curlbin -o $TMP/cache.$PARSER.$INPUT.$FROM.1 ${1}
471        URL=`zcat $TMP/cache.$PARSER.$INPUT.$FROM.1 | grep iframe | sed -nr 's/.*src="([^"]+)".*/\1/p'`
472        if [ -z "$URL" ];then
473                URL=`cat $TMP/cache.$PARSER.$INPUT.$FROM.1 | grep iframe | sed -nr 's/.*src="([^"]+)".*/\1/p'`
474        fi
475        if [ -z "$URL" ];then
476                URL=`cat $TMP/cache.$PARSER.$INPUT.$FROM.1 | grep "text/javascript" | grep -v jQuery | sed -nr 's/.*src="([^"]+)".*/\1/p'`
477        fi
478
479#       echo $URL
480        $curlbin "$INPUT" -o $TMP/cache.hoster.$hoster.2
481}
482
483
484directstream()
485{
486        echo "$INPUT"
487#       rm -f /tmp/_last_hoster_* > /dev/null 2>&1
488        echo  "$INPUT" > /tmp/.last_hoster_$hoster.log
489}
490
491youtube_dl()
492{
493#       echo "$BIN $youtubebin $INPUT" > /tmp/.last_hoster_youtube_dl.log
494#       $BIN $CMD/lib/youtube_dl/__main__.py --no-check-certificate --cookies /mnt/network/cookies --user-agent "$USERAGENT" --format mp4 --restrict-filenames --ignore-errors -g "$INPUT" > /tmp/youtube_dl.streamlink.log 2>&1
495#       cat /tmp/youtube_dl.streamlink.log | tail -n1
496        mkdir $TMP > /dev/null 2>&1
497
498        echo "$BIN $youtubebin $INPUT --username $USER --password $PASS" > /tmp/.last_hoster_youtube_dl.log
499
500        $BIN $youtubebin "$INPUT" --username "$USER" --password "$PASS" > $TMP/$TYPE.$hoster.$FILENAME.streamlist
501        cat $TMP/$TYPE.$hoster.$FILENAME.streamlist
502}
503
504youtube_dlbg()
505{
506#       echo "$BIN $youtubebinbg $DEST $INPUT" > /tmp/.last_hoster_youtube_dlbg.log
507#       URL=`$BIN $CMD/lib/youtube_dl/__main__.py --no-check-certificate --cookies /mnt/network/cookies --user-agent "$USERAGENT" --format mp4 --restrict-filenames --ignore-errors --output "$1" "$2"`
508#       echo "$URL" >> /tmp/.last_hoster_youtube_dlbg.log
509#       echo $URL
510        mkdir $TMP > /dev/null 2>&1
511
512        echo "$BIN $youtubebinbg $DEST $INPUT" > /tmp/.last_hoster_$TYPE.log
513        $BIN $youtubebinbg "$DEST" "$INPUT" >> /tmp/.last_hoster_$TYPE.log
514#       echo $TMP/$TYPE.$hoster.$FILENAME.streamlist
515}
516
517hlsdl()
518{
519        mkdir $TMP > /dev/null 2>&1
520
521        echo "$HLSBIN $hlsdlbg $DEST $INPUT" > /tmp/.last_hoster_$TYPE.log
522
523        REFERER=$(echo "$INPUT" | sed -nr 's/.*Referer=([^=]+)&.*/\1/p')
524        if [ -z "$REFERER" ];then
525                REFERER=$(echo "$INPUT" | sed -nr 's/.*Referer=([^=]+).*/\1/p')
526        fi
527
528        if [ ! -z "$REFERER" ];then
529                REFERER="Referer: $REFERER"
530        fi
531
532        TMPUSERAGENT=$(echo "$INPUT" | sed -nr 's/.*User-Agent=([^=]+)&.*/\1/p')
533        if [ -z "$TMPUSERAGENT" ];then
534                TMPUSERAGENT=$(echo "$INPUT" | sed -nr 's/.*User-Agent=([^=]+).*/\1/p')
535        fi
536        if [ ! -z "$TMPUSERAGENT" ];then
537                USERAGENT=$TMPUSERAGENT
538        fi
539
540        URL=$(echo "$INPUT" | tr '|' '\n' | head -n1)
541
542        echo $HLSBIN "$URL" -v -f -u "$USERAGENT" -h "$REFERER" -o "$DEST" >> /tmp/.last_hoster_$TYPE.log
543        $HLSBIN "$URL" -v -f -u "$USERAGENT" -h "$REFERER" -o "$DEST" >> /tmp/.last_hoster_$TYPE.log
544#       $HLSBIN "$URL" -v -u "$USERA" -h "$REFERER" -o "$DEST" >> /tmp/.last_hoster_$TYPE.log
545
546}
547
548
549if [ "$TYPE" == "get" ];then
550        echo  "$INPUT" > /tmp/.last_hoster_$TYPE_$hoster.log
551        case $hoster in
552                ecostream) ecostream $INPUT;;
553                giga) giga $INPUT;;
554                nosvideo) nosvideo $INPUT;;
555                allmyvideos) allmyvideos $INPUT;;
556                flashx) flashx $INPUT;;
557                openload|oload) openload $INPUT;;
558                briskfile) briskfile $INPUT;;
559                videoweed|bitvid) videoweed $INPUT;;
560                vodlocker) vodlocker $INPUT;;
561                youwatch|chouhaa|ay8ou8ohth) youwatch $INPUT;;
562                thevideo) thevideo $INPUT;;
563                movshare|wholecloud|vidgg) movshare $INPUT;;
564                vidto) vidto $INPUT;;
565                vidup) vidup $INPUT;;
566                vidzi) vidzi $INPUT;;
567                vivo) vivo $INPUT;;
568                goldesel|movie4k) cloudflare $INPUT;;
569                streamcloud1) streamcloud $INPUT;;     
570                nowvideo) nowvideo $INPUT;;
571                divxstage|cloudtime) divxstage $INPUT;;
572                novamov|auroravid) novamov $INPUT;;
573                xvidstage) xvidstage $INPUT;;
574                waaw|netu|hqq) waaw $INPUT;;
575                streamango|streamcherry) streamango $INPUT;;
576                vidlox) vidlox $INPUT;;
577                redirector|googlevideo|vodcloud|google) directstream "$INPUT";;
578                aliez) aliez $INPUT;;
579                sport7) sport7 $INPUT;;
580                sportstream365) sportstream365 $INPUT;;
581                sportsonline) sportsonline $INPUT;;
582                assia) assia $INPUT;;
583#               *) all $INPUT;;
584        esac
585fi
586
587if [ "$TYPE" == "youtube_dl" ];then
588        echo  "$INPUT" > /tmp/.last_hoster_$TYPE_$hoster.log
589        case $hoster in
590                *) youtube_dl $INPUT $USER $PASS;;
591        esac
592fi
593
594if [ "$TYPE" == "youtube_dlbg" ];then
595        echo  "$INPUT" > /tmp/.last_hoster_$TYPE_$hoster.log
596        case $hoster in
597                *) youtube_dlbg $DEST $INPUT;;
598        esac
599fi
600
601if [ "$TYPE" == "hlsdl" ];then
602        echo  "$INPUT" > /tmp/.last_hoster_$TYPE_$hoster.log
603        case $hoster in
604                *) hlsdl $INPUT;;
605        esac
606fi
Note: See TracBrowser for help on using the repository browser.