View Single Post
  #2  
Old 05-16-2014, 11:17 AM
dexteriptv dexteriptv is offline
Junior Member
 
Join Date: Feb 2014
Posts: 18
dexteriptv is on a distinguished road
Default

Re: How to rtmpdump castalba.tv stream?


Looks like the server generates new playpath link for each session and validates it during connect.

The response of
Code:
http://castalba.tv/embed.php?cid=22179&wh=640&ht=480&r=live9.net
Has the below dynamic parameters.

Code:
				'file': '196704?313430303235393935375f3861346166643339363339356233343132663665653333656265626135356464',


			'streamer': 'rtmp://173.193.233.148/live',

You need to write a script and fetch this url and grep the above. Then use it in rtmpdump.
Code:
rtmpdump -v -r "rtmp://173.193.233.148/live/196704?313430303235393935375f3861346166643339363339356233343132663665653333656265626135356464" --pageUrl=http://castalba.tv -W http://static.castalba.tv/player5.9.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