View Single Post
  #6  
Old 09-03-2014, 03:05 PM
dexteriptv dexteriptv is offline
Junior Member
 
Join Date: Feb 2014
Posts: 18
dexteriptv is on a distinguished road
Default

Re: Challenge Lovers...Here is one for you... (token(s) needed)


Got the below..

Used curl (open source) to fetch the page. Basic bash commands to grep the dynamic rtmp URL. No token required!! Cheers

Code:
curl "http://www.boxlivetv.net/player.php?chname=foxsports&width=650&height=450&domain=www.pirlotv.tv" > out.txt

findstr "rtmp:" out.txt > out2.txt
for /f usebackq^ tokens^=^4^ delims^=^' %%a in ("out2.txt") do >"rtmp.txt" echo %%a
set /p rtmpurl=< rtmp.txt
del out.txt del out2.txt del rtmp.txt

rtmpdump -v -V -r "%rtmpurl%/foxsports" --pageUrl=http://www.boxlivetv.net/player.php -W http://www.pirlotv.me/players/player2.swf -o - -b 36000 | "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" -q --one-instance --fullscreen --play-and-exit --network-caching=1600 --no-osd -
Reply With Quote