View Single Post
  #6  
Old 07-31-2017, 11:23 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: How to watch BBC World News from Giniko on VLC


Streamlink runs VLC with it's own "user agent".

I wan to make it more simple than that.

I want to run VLC only with my fake user agent.


eddi,

you see here from post #4 that my batch file works and your does not work.

I can think about 2 things.

You messed up with too many parameters, or wmsAuthSign has expired. It lasts for a few hours only.

You can play Giniko with VLC and Streamlink if you modify my script a little bit, but that is not the point.

I want to play Giniko with VLC without Streamlink, and setting user agent for VLC is a problem.

You can see in post #3 that it works, so what is wrong with that?

That setting is for one shot only, I cannot get it saved.

Solution is setting user agent in vlcrc or find right switch for command line string, and I am working now on that.



bbcworld.exe passes m3u8 url from html source to Streamlink who plays Giniko with it's own "user agent" and runs VLC.

bbcworld.au3

Code:
runwait('cmd.exe /c curl.exe http://www.giniko.com/watch.php?id=216 | CLIP','',@SW_HIDE,'')
$sData = ClipGet()
$sData = StringTrimLeft($sData,StringInStr($sData,'?wmsAuthSign='))
$sData = StringTrimRight($sData,(StringLen($sData)+1)-StringInStr($sData,'"'))
$url = 'hlsvariant://http://nimlive1.giniko.com/bbcworldnews/bbcworld/playlist.m3u8?' & $sData & ' best'
Run('cmd.exe /c streamlink.exe ' & $url,'',@SW_HIDE)

Reply With Quote