Jump to content

Live internet streaming


Recommended Posts

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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.

:party: 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!

Link to comment
Share on other sites

  • 5 weeks later...

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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...