search for: myradio

Displaying 15 results from an estimated 15 matches for "myradio".

2005 Nov 04
1
prototype EventObserver on radio option elements
...of the radio option. Clicking on a different radio element unchecks the first element, but the EventObserver never sees this and this never resets "lastValue". Which means the events never fire again. Its easy to reproduce: <label><input type="radio" name="myradio" value="a" id="myradio.a">Value A</label> <label><input type="radio" name="myradio" value="b" id="myradio.b">Value B</label> <script type="text/javascript"> new Form.Element.EventObserver...
2004 Aug 06
1
a Question
Hi people, i am testing icecast 2 and its really very very good, the quality of the sound is very better than shoutcast. but i have a question: in shoutcast, i make a web forfward : http://play.myradio.com.br to http://www.myradio.com.br:8000/listen.pls and wen the user click, the winamp or real one automatically open an play my radio. In shoutcast can i do it too? if yes, how i do? tank u very much --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://w...
2004 Aug 06
1
Macromedia Flash as mp3 player
Could you explain just how you use Flash to play back the stream? -------- Original Message -------- Subject: [icecast] Macromedia Flash as mp3 player (30-Okt-2003 10:40) From: assorgia@tin.it To: d.moritz@edv-partner.com > Hi, I've been experimenting on using the flash plugin to listen to > icecast mp3 streams, so that the user does'nt have to download any > external
2004 Aug 06
4
Patches - Was: Stream metadata settings
...rride the yp flag. <yp-public>1</yp-public> When this is set, the stream will be public or non public, according to it's content. This only works when yp-override is set. It allows to suppress yp reporting or to force it, or leave it under control of the source. <yp-name>MyRadio</yp-name> This will overwrite the name given by the source with the name specified here. <yp-url><a href="http://www.radio.com/myradio.html</yp-url">http://www.radio.com/myradio.html</yp-url</a>> This will force a specific URL to be listed with the YP...
2004 Aug 06
3
Direct URL
Ok for shoutcast you can do http://domain.com/listen.pls to get the feed what can you do for icecast so it can be a clickable url? --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only the word 'unsubscribe' in the body. No
2004 Aug 06
2
Icecast winamp oddcast mountpoint problem?
...(it seems to become the default stream the first connected to the server). When I try to connect to any other mountpoint I fall back to the default one. Any clues? It is Winamp or icecast? Or something else? <p>My config file is: ================================= location ***** rp_email me@myradio.bla server_url http://www.myradio.bla/ max_clients 50 max_clients_per_source 30 max_sources 5 max_admins 5 throttle 10.0 use_meta_data 0 streamurllock 0 streamtitletemplate %s streamurl http://yp.icecast.org nametemplate %s desctemplate %s mount_fallback 1 encoder_password *** admin_password **...
2004 Aug 06
7
Stream metadata settings
> IMHO, a system like Icecast should be made so highly configurable that it > would fit everyone's needs, but I get the impression that only the needs of > the principal developers are of interest here. It makes me sad to see this, > Icecast could be great instead of just being good. > Melanie, As one of the 'principal developers', I don't think this is fair. Of
2004 Aug 06
2
parsing icecast 1 and icecast2 logs in GUI web format
Eisele, Would you mind sharing with myself and other what you did to get this running? I am very familiar with webalizer, but perhaps others are not so. I'd be curious to see your scripts for getting it to work with MRTG seeing as how I use that often as well. Thanks. KJ <p>On Wed, 2003-11-12 at 09:16, EISELE Pascal wrote: > Hi > > I'm using webalizer without any
2004 Nov 01
4
ICECast in Flash / IEWin
...er. So, I made a small PHP proxy and now Flash works very well with icecast 2. Other solution is to add this header in the icecast 2 source code and compile it, but I don't have time to test. My proxy.php file : <? Header("Content-Length: 54000000\n"); $fp=fopen("http://www.myradio.com:8000/mountpoint.mp3","r"); while(!feof($fp)) print($line=fread($fp,2000)); fclose($fp); ?> >From flash I call proxy.php instead of mountpoint.mp3 Hope this help, Sincerly, -- Ika Selon Ian Andrew Bell <hello@ianbell.com>: > Doesn't work so well on Mozil...
2006 Dec 24
1
Icecast vs Internet Explorer 7 patch
...restriction like in the java to only open socket on the same host where applet is located. This is a sample code to play icecast stream in a flash code stream = new Sound(); domain = new String(); mount = new String(); port = new String(); domain = 'icecast.youdomain'; mount = 'myradio.mp3'; port = '80'; System.security.allowDomain('http://'+ domain); stream.loadSound('http://'+ domain +':'+ port +'/'+ mount, true); function callback() { stream.start(); } stream.onSoundComplete = callback; stream.start(); Happy Christmas. --...
2004 Aug 06
0
Icecast in Macromedia Flash
...onnected to the internet (Windows, MAC, Linux - but NOT > linux PPC) and it > will be embedded into a webpage. > I successfully imported an Icecast live stream into Flash > with this simple > ActionScript code: > TestIcecast = new Sound(); > TestIcecast.loadSound("http://myradio.com:8000/mystream", true); > TestIcecast.start(0,0) > > For those who don't know flash, here is the process of > creating a flash > animation: you edit the code into a .fla file, then export > this code into a > .swf file (the flash animation) and then embed this fl...
2004 Oct 18
2
ICECast in Flash / IEWin
Alternatively you can just script the window media player control, and bind it to your stream, that should work just fine, assuming you have my directshow filters installed. Zen. ----- Original Message ----- From: "Michael Smith" <msmith@xiph.org> To: "Ian Andrew Bell" <hello@ianbell.com>; "icecast" <icecast@xiph.org> Sent: Monday, October 18,
2004 Aug 06
4
Hot Topic: Icecast in Macromedia Flash
...ash is cross-platform/cross-browser, it is installed on almost every computer connected to the internet and it will be embedded into a webpage. I successfully imported an Icecast live stream into Flash with this simple ActionScript code: TestIcecast = new Sound(); TestIcecast.loadSound("http://myradio.com:8000/mystream", true); TestIcecast.start(0,0) For those who don't know flash, here is the process of creating a flash animation: you edit the code into a .fla file, then export this code into a .swf file (the flash animation) and then embed this flash animation into a webpage. HERE IS...
2004 Aug 06
4
Hot Topic: Icecast in Macromedia Flash
...ash is cross-platform/cross-browser, it is installed on almost every computer connected to the internet and it will be embedded into a webpage. I successfully imported an Icecast live stream into Flash with this simple ActionScript code: TestIcecast = new Sound(); TestIcecast.loadSound("http://myradio.com:8000/mystream", true); TestIcecast.start(0,0) For those who don't know flash, here is the process of creating a flash animation: you edit the code into a .fla file, then export this code into a .swf file (the flash animation) and then embed this flash animation into a webpage. HERE IS...
2004 Aug 06
6
Icecast in Macromedia Flash
...installed on almost every computer connected to the internet (Windows, MAC, Linux - but NOT linux PPC) and it will be embedded into a webpage. I successfully imported an Icecast live stream into Flash with this simple ActionScript code: TestIcecast = new Sound(); TestIcecast.loadSound("http://myradio.com:8000/mystream", true); TestIcecast.start(0,0) For those who don't know flash, here is the process of creating a flash animation: you edit the code into a .fla file, then export this code into a .swf file (the flash animation) and then embed this flash animation into a webpage. HERE IS...