Thread: CNC World Live
View Single Post
  #4  
Old 07-26-2017, 09:32 AM
j_cool j_cool is offline
Senior Member
 
Join Date: Feb 2016
Posts: 515
j_cool is on a distinguished road
Default

Re: CNC World Live


Here are 2 different views of CNC.



For Giniko view here is autoit script fot those interested.

On a sideline, shellexecute runs ffplay without cmd.exe window.

Requirements:

curl and ffplay on the path, or specify path in script. Can be vlc instead of ffplay.

autoit to compile CNC.au3 to CNC.exe

Open CNC.au3 with Scite, Tools, Compile. This creates CNC.exe.


CNC.au3

Code:
runwait('cmd.exe /c curl.exe http://www.giniko.com/watch.php?id=297 | CLIP','',@SW_HIDE,'')
$sData = ClipGet()
$sData = StringTrimLeft($sData,StringInStr($sData,'?wmsAuthSign='))
$sData = StringTrimRight($sData,(StringLen($sData)+1)-StringInStr($sData,'"'))
$url = 'http://nimlive1.giniko.com/cncworld-eng/cncworld-eng.stream/playlist.m3u8?' & $sData & ' -user_agent Mozilla/5.0'
shellexecute('ffplay.exe',$url,'','','')

http://www.paehl.com/open_source/?CURL_7.54.0

Download WITHOUT SSL

curl_754_0.zip



https://www.autoitscript.com/site/autoit/downloads/

AutoIt– Self Extracting Archive (for those who don’t like/want an installer)(includes
x86 and x64 components and Aut2Exe and AutoItX)

autoit-v3.zip
Reply With Quote