View Single Post
  #7  
Old 02-15-2013, 06:34 AM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

Re: [RTMP] Youtube Live Stream Please help !


Stream 1 is an embedded video from YouTube:

Code:
https://www.youtube.com/v/YlmBS-DCNgg&hl?feature=player_embedded;autoplay=1
https://www.youtube.com/watch?v=YlmBS-DCNgg
You can try to use the Firefox Addon DownloadHelper on that.

Stream 2 comes from this site:

Code:
http://freeasia.tv/freetv/tamil/sunews.php
If you have a look at the souce code (CTRL+U if you use Firefox) of that page you can see:

Code:
mms://173.193.9.71:86/sunewsdigitalstreams.tv?server_time=2/15/2013 1:09:19 PM&hash_value=ZqakzHpPzNlU+FwZKQ6z9Q==&validminutes=5
that the hash is obviously only valid for 5 minutes.

You need to encode the date/time part of the string:

"2/15/2013 1:09:19 PM" --> "2%2F15%2F2013%201%3A09%3A19%20PM"

to

Code:
mms://173.193.9.71:86/sunewsdigitalstreams.tv?server_time=2%2F15%2F2013%201%3A09%3A19%20PM&hash_value=ZqakzHpPzNlU+FwZKQ6z9Q==&validminutes=5
Then you should be able to capture it with VLC media player.
Reply With Quote