twitchyliquid64 Posted March 29, 2008 Posted March 29, 2008 Say I wanted to create live internet streaming EG: internet radio, how? I think AMP 3 did it somehow. ongoing projects:-firestorm: Largescale P2P Social NetworkCompleted Autoit Programs/Scripts: Variable Pickler | Networked Streaming Audio (in pure autoIT) | firenet p2p web messenger | Proxy Checker | Dynamic Execute() Code Generator | P2P UDF | Graph Theory Proof of Concept - Breadth First search
Nahuel Posted March 29, 2008 Posted March 29, 2008 This code used to work. I posted it for someone who requested the same thing. I can't try it. #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
rudi Posted March 29, 2008 Posted March 29, 2008 Say I wanted to create live internet streaming EG: internet radio, how? I think AMP 3 did it somehow.A nice, easy to use and free (German Language) streaming server for Windows is "Oxyl". I'm not sure, if there is an English translation available, pls check out yourself. Remember, that a public available streaming server might conflict with copyright laws, and that the music industry is trying hard to sue anybody they can identify to violate copyright -- it could end up very expensive So be careful, what you publish ...Regards, Rudi. Earth is flat, pigs can fly, and Nuclear Power is SAFE!
Swift Posted March 29, 2008 Posted March 29, 2008 No, Amp 3 did not have a streading Radio, it was going to be put in, until...the post above.
twitchyliquid64 Posted April 28, 2008 Author Posted April 28, 2008 lol, Thanks a bunch to everyone who helped me, I apperieate it ongoing projects:-firestorm: Largescale P2P Social NetworkCompleted Autoit Programs/Scripts: Variable Pickler | Networked Streaming Audio (in pure autoIT) | firenet p2p web messenger | Proxy Checker | Dynamic Execute() Code Generator | P2P UDF | Graph Theory Proof of Concept - Breadth First search
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