au3scr Posted December 20, 2007 Posted December 20, 2007 Is it possible?Is it possible to play http://streamer.sotovik.ee:8500/skyplus_hi.ogg with autoit?how should i make program to play it?Like i download file and then play same file?
jvanegmond Posted December 20, 2007 Posted December 20, 2007 You can not play http://streamer.sotovik.ee:8500/skyplus_hi.ogg with AutoIt, since the file is not loading. github.com/jvanegmond
Nahuel Posted December 20, 2007 Posted December 20, 2007 (edited) But you can always use embedded wmp: #include <GUIConstants.au3> $Form1 = GUICreate("AForm1", 300, 448, 192, 125, $WS_DLGFRAME) $oWMP = ObjCreate("WMPlayer.OCX") GUICtrlCreateObj($oWMP, 0, 0, 300, 300) $oWMP.URL = "http://livestream.xs4all.nl/streamgate.asp?ch=72&x=.asx" $oWMP.controls.play() $oWMP.stretchToFit = True $oWMP.windowlessVideo = True $oWMP.fullscreen = True $oWMP.uiMode = 'none' GUISetState(@SW_SHOW) While 1 Sleep(100) WEnd Exit Original code by someone else Edited December 20, 2007 by Nahuel
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now