Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > rtmpdump
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #1  
Old 09-25-2013, 01:25 AM
peterpan peterpan is offline
Senior Member
 
Join Date: Jun 2013
Posts: 553
peterpan is on a distinguished road
Default

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


Hey Gurus,

Can you please take a look at this and see if you can "crack it" and get it to play on xbmc or vlc, for that matter!

http://www.pirlotv.tv/ver-fox-sports.php

Here is some facts about this stream:

a. the server (ip address) changes every time you open/play the channel (so regex is a must)

b. your own ip address is hex encoded in the id=xxxxx..., so that id changes based on where you play the stream from. but is "static", if your ip is static

c. the long string of numbers "ids" (after embed/ and separated by "/") in pageUrl also vary. the 1st half of the id changes only based on the channel you choose, the 2nd half (after "/"), also changes based om your own ip and the channel you're playing (I believe)

d. again, all these IDs remain static if you play the channel form the same location (i.e. your home or cafe, etc...)

e. I think this monster needs a token, maybe even 2 or 3 tokens!!!

Here is what I've captured, and you should be able to capture as well, rather easily...but good luck making it work

rtmp://198.144.153.143:443/kuyo playpath=dfoxsportsptv?id=3?362e31??392e302e36?? conn=S:OK swfUrl=http://yukons.net/yplayerv2.swf
pageUrl=http://yukons.net/embed/36343636364637383733373036463732373437333730373437 36/b1d5f8de4abbd899b4b2453b28c36824/650/440

So in summary, if you were to regex this stream, it looks like only the ip address needs to be regex'ed...piece of cake, right? not so I'd say... I and a buddy of mine have been working on it for a few days, and so far...no luck It needs some token or an additional "conn=" expression, which we're not able to find

Cheers & Thank You!

Last edited by peterpan : 09-25-2013 at 02:36 AM.
Reply With Quote
  #2  
Old 09-25-2013, 05:11 PM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

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


Code:
rtmpdump -v -r "rtmp://50.23.115.84/live" -a "live" -W "http://mips.tv/content/scripts/eplayer.swf" -p "http://mips.tv/embedplayer/dfoxsports/1/650/440" -C S:OK -y "dfoxsports?id=181388" -o "dfoxsports_stream.flv"
Code:
RTMPDump v2.4 GIT-2012-12-09 (Compiled by KSV)
(c) 2010 Andrej Stepanchuk, Howard Chu, The Flvstreamer Team; license: GPL
Connecting ...
INFO: Connected...
Starting Live Stream
INFO: Metadata:
INFO:   presetname            Custom
INFO:   creationdate          Wed Sep 25 14:37:42 2013
INFO:   videodevice           VC500 Video
INFO:   framerate             29.97
INFO:   width                 400.00
INFO:   height                240.00
INFO:   videocodecid          avc1
INFO:   videodatarate         400.00
INFO:   avclevel              31.00
INFO:   avcprofile            66.00
INFO:   videokeyframe_frequency5.00
INFO:   audiodevice           VC500 Video
INFO:   audiosamplerate       22050.00
INFO:   audiochannels         1.00
INFO:   audioinputvolume      75.00
INFO:   audiocodecid          .mp3
INFO:   audiodatarate         32.00
673.771 kB / 15.91 sec
As I am not familiar with XBMC, I can't vouch for it. But it should look like this:

Code:
<link>rtmp://50.23.115.84/live playpath=dfoxsports?id=181388 app=live conn=S:OK swfUrl=http://mips.tv/content/scripts/eplayer.swf pageUrl=http://mips.tv/embedplayer/dfoxsports/1/650/440 live=true swfVfy=true</link>
Reply With Quote
  #3  
Old 09-26-2013, 12:28 AM
peterpan peterpan is offline
Senior Member
 
Join Date: Jun 2013
Posts: 553
peterpan is on a distinguished road
Default

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


Thanks for giving it a try bro!

It's working great! But not exactly what I was looking for...Thank you very much for your effort though. You probably noticed that your capture is quite different than mine. And the reason being is because they (pirlo tv) is now streaming using a different protocol all together MIPS vs. Yukons

I hope they switch back to the "harder stream" soon, so I can proceed with my testing...

Cheers!
Reply With Quote
  #4  
Old 09-02-2014, 07:37 PM
Len1o Len1o is offline
Junior Member
 
Join Date: Jun 2014
Posts: 3
Len1o is on a distinguished road
Default

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


how do you get a decoded id ?
Reply With Quote
  #5  
Old 09-03-2014, 03:42 AM
mckv mckv is offline
Senior Member
 
Join Date: Mar 2011
Posts: 104
mckv is on a distinguished road
Default

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


they change the stream site all the time so any regex you write will be quickly useless

currently using boxlivetv
Code:
rtmpdump -r "rtmp://162.253.130.162/edge/foxsports" -a "edge/foxsports" -f "LNX 11,2,202,400" -W "http://www.pirlotv.me/players/player2.swf" -p "http://www.boxlivetv.net" -y "foxsports" | vlc -
Reply With Quote
  #6  
Old 09-03-2014, 04: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
Reply Post New Thread
Tags: ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 11:20 AM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons