Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   rtmpdump (http://stream-recorder.com/forum/forumdisplay.php?f=54)
-   -  

ustream > m3u8 ؟؟؟؟؟؟

(http://stream-recorder.com/forum/showthread.php?t=22985)

noyoof 05-10-2017 03:31 PM

ustream > m3u8 ؟؟؟؟؟؟


 
How can i convert broadcast to m3u8 ?

http://www.ustream.tv/nasahdtv

Please Help ....

confused.com 05-10-2017 03:48 PM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
https://github.com/streamlink/stream...utf8=%E2%9C%93

noyoof 05-10-2017 04:15 PM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
UStream today closed the direct links

Is there another idea to extract m3u8?

techmax 05-14-2017 04:52 AM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
Is it a new way?

tvgplayer 05-14-2017 03:15 PM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
Quote:

Originally Posted by sysanin (Post 91663)
̶N̶e̶w̶ ̶ way:
Disable Flash
User Agent > Mobile Devices


Disabled Flash
User Agent > iPhone 3.0

Not working for me.

Code:

"C:\Program Files (x86)\Streamlink\bin\streamlink.exe" --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" "hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best

j_cool 05-14-2017 04:02 PM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
TVG,

I had a look at error message in cmd window and it was something about Los Angeles, cmd.exe complaining about
an empty space between Los and Angeles ( geocity=Los (request() got an unexpected keyword argument 'userId')

it should look like this on command line: Los%20Angeles, and like this: Los%%20Angeles in batch file,
no empty space in URL even in between double quotes.

I can watch this stream in Europe.

Here is code that works if you copy and pase it in cmd window:

Code:

streamlink.exe --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" "hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los%20Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best
If you want the same code to work in batch file, you have quite a bit of escaping to do:

% = %%
& = ^&

http://www.robvanderwoude.com/escapechars.php


Error message:

Code:

C:\>streamlink.exe --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" hlsvariant://http://"sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best
[cli][info] Found matching plugin stream for URL hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2
error: Unable to open URL: http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los (request() got an unexpected keyword argument 'userId')

Working code, I closed the player, this is all fine:

Code:

C:\>streamlink.exe --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" "hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los%20Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best
[cli][info] Found matching plugin stream for URL hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los%20Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2
[cli][info] Available streams: 252p (worst), 360p, 486p, 720p (best)
[cli][info] Opening stream: 720p (hls)
[cli][info] Starting player: C:\P\VLC\vlc.exe --file-caching=5000
[cli][info] Player closed
[cli][info] Stream ended
[cli][info] Closing currently open stream...


noyoof 05-15-2017 02:06 AM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
Quote:

Originally Posted by j_cool (Post 91670)
TVG,

I had a look at error message in cmd window and it was something about Los Angeles, cmd.exe complaining about
an empty space between Los and Angeles ( geocity=Los (request() got an unexpected keyword argument 'userId')

it should look like this on command line: Los%20Angeles, and like this: Los%%20Angeles in batch file,
no empty space in URL even in between double quotes.

I can watch this stream in Europe.

Here is code that works if you copy and pase it in cmd window:

Code:

streamlink.exe --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" "hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los%20Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best
If you want the same code to work in batch file, you have quite a bit of escaping to do:

% = %%
& = ^&

http://www.robvanderwoude.com/escapechars.php


Error message:

Code:

C:\>streamlink.exe --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" hlsvariant://http://"sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best
[cli][info] Found matching plugin stream for URL hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2
error: Unable to open URL: http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los (request() got an unexpected keyword argument 'userId')

Working code, I closed the player, this is all fine:

Code:

C:\>streamlink.exe --http-header "User-Agent=Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" "hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los%20Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2" best
[cli][info] Found matching plugin stream for URL hlsvariant://http://sjc-uhls-proxy115.ustream.tv/watch/playlist.m3u8?cid=6540154&appType=11&appVersion=2&locks=97d170e1550eee4afc0af065b78cda302a97674c&geo=US&geocity=Los%20Angeles&userId=&connectionId=sjc-flot-omega01_2780158&ts=1494795743&ip=108.75.197.71&cdn=uhs_akamai&sgn=f8d081276e2b2012e3d5ca58eaaa98c5e9a20ed2
[cli][info] Available streams: 252p (worst), 360p, 486p, 720p (best)
[cli][info] Opening stream: 720p (hls)
[cli][info] Starting player: C:\P\VLC\vlc.exe --file-caching=5000
[cli][info] Player closed
[cli][info] Stream ended
[cli][info] Closing currently open stream...



Can convert the broadcast to m3u8???

http://www.ustream.tv/channel/winradio-manila

j_cool 05-15-2017 02:31 AM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
Code:


C:\>streamlink.exe --stream-url http://www.ustream.tv/channel/winradio-manila best
http://36d7d6b1-lp-beta.ums.ustream.tv/playlist/auditorium/channel/7868006/2/playlist.m3u8?token=1311499_1494836934021&appType=11&appVersion=2&chunkingType=improved&sgn=3d067d7a158ff6a958e54119f6c747bba9ddb899&cdnHost=uhs-akamai.ustream.tv/


noyoof 05-15-2017 02:34 AM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
Quote:

Originally Posted by j_cool (Post 91677)
Code:


C:\>streamlink.exe --stream-url http://www.ustream.tv/channel/winradio-manila best
http://36d7d6b1-lp-beta.ums.ustream.tv/playlist/auditorium/channel/7868006/2/playlist.m3u8?token=1311499_1494836934021&appType=11&appVersion=2&chunkingType=improved&sgn=3d067d7a158ff6a958e54119f6c747bba9ddb899&cdnHost=uhs-akamai.ustream.tv/


does not work for me.


I tried this method and did not work, do you have a new way?

j_cool 05-15-2017 02:59 AM

Re: ustream > m3u8 ؟؟؟؟؟؟


 
I can play it like this:

C:\MISC\STREAMLINK>streamlink.exe http://www.ustream.tv/channel/winradio-manila best
[cli][info] Found matching plugin ustreamtv for URL http://www.ustream.tv/channel/winradio-manila
[cli][info] Available streams: 0p (best, worst)
[cli][info] Opening stream: 0p (hls)
[cli][info] Starting player: C:\P\VLC\vlc.exe --file-caching=5000
[cli][info] Player closed
[cli][info] Stream ended
[cli][info] Closing currently open stream...


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