shoutcast

How to emulate/replace/re-enable classical Sound Mixer controls (or commands) in Windows Vista? [answered]

Hi. I have a problem (and have been having it for some time now) -- the new sound mixer stack in Vista features new cool things, but also re-invents the wheel. Many applications that used to use Volume Mixer on a Windows system to mix different voiced outputs into one input (for example Wave-out + Line-in --> Stereo Mix) have since stopp...

Streaming audio with Flash / Actionscript 3 - Slow playback problem

I've written a simple Flash player for a Shoutcast stream. At first it seemed to work reliably, however about 5% of the time users experience slow playback where the stream plays at roughly half of normal speed. All files being streamed are MP3, encoded at 128kbps/44.1kHz, the same settings as used in the Shoutcast config files, so the ...

Delay a Shoutcast stream by 12 hours (Linux/bash)

Hey, I am living on the other side of the world from my home (GMT+1 now, GMT+13 is home), and I miss my old terrestrial radio station. It has a Shoutcast stream, and I would like to simply delay it by 12 hours so that it is always available when I want to listen to it, in a way that would make its timezone be synchronised to my timezone...

How to stream a shoutcast radio broadcast in Flash (Shoutcast Flash Player)

I've been looking for a solution to this for years, but nothing is conclusively documented. There are many Shoutcast Flash players out there (e.g. radio.de) so I know it's possible. However, most of my research leads to this: s = new Sound(); s.loadSound ("url.of.shoutcaststream:8003",true); Which works for me in FireFox but not in IE...

Internet Radio Tuner integrated with Shoutcast

How an internet Radio tuner integrated with Shoutcast works?How does it switch from one station to other through shoutcast?Are there Shoutcast API's available in Java to implement Internet Radio tuner? ...

Simple check (PHP) to see if Shoutcast radio is online?

Basically, just a simple script that can check to see if a shoutcast radio is online or not, and output a code based on it. I tried to do this with file_get_contents and eregi, but it didn't seem to work, or was waaaaay to slow. Cheers. :) ...

Replacing a Windows Media Server (weekly radio show).

I'm moving a weekly live radio show from Windows Media Server and am looking for an alternative to accomplish the same task. We are decommissioning the WMS box and would rather just run it on another platform. I know there is shoutcast and icecast2 but unless I'm missing something they do live streams of prerecorded material. We stream o...

Shoutcast Radio Player - actionscript based flash player, how to autoplay "false" it?

Hello Masters Of Web Development again. Today my question is flash based. I have no experience in actionscript but due some conditions, I need to work a little with it. I've found only one flash player, that plays my Shoutcast stream directly to my site. I've designed it the way I like, put my shoutcast url in it and everything I wanted....

Flex/Flash Shoutcast player

I am trying to build a flash player for my company's Shoutcast server, and have seen a few articles about it on the 'net, including this SO question here. However, I can't seem to get the audio stream to actually play. It seems to be connecting alright, but calling stream.play() doesn't seem to do anything. I have tried the code i...

Shoutcast streaming

hi, im currently working on a app for a podcast (katg.com) which will let you listen live etc... however, i have not found any open source code available to stream shoutcast. I know there are some ways of doing it, but I find it hard to find any available code on the net that explains it for a java/android beginner like myself. Anyone k...

How to receive and play back a SHOUTcast audio stream on the mac or iphone?

Are there solutions in C or Objective-C to receive and play back SHOUTcast audio streams on the mac or iphone? ...

Is it possible to play shoutcast internet radio streams with html5?

Is it possible to play shoutcast (or some) internet radio streams with html5? So I have next code: <html> <body> <audio src="http://shoutcast.internet-radio.org.uk:10272/" /> </body> </html> I save it as HTML page and start my browser (Google chrome 4.0.249.78, safary or FF) But it does not play/work!( And it does not play with an...

Icecast/shoutcast streaming on Android

Is there a way to stream shoutcast/icecast on the android? Passing the icecast URL to the mediaplayer does not work and after researching the topic it seems it is because android can't play raw aac files without a media container. What can I do to get around this? Thanks ...

Getting SHOUTcast metadata on the Mac

I'm creating an application in Objective-C and I need to get the metadata from a SHOUTcast stream. I tried this: NSURL *URL = [NSURL URLWithString:@"http://202.4.100.2:8000/"]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL]; [request addValue:@"1" forHTTPHeaderField:@"icy-metadata"]; [request addValu...

ShoutCast over SSL

So I've gone ahead and set up my ShoutCast server DNAS and set my DSP in Winamp on my host computer. The server listens on port 8000, so per some instructions I installed an output plugin for winamp (Shoutcast DSP) and used 8000 and the password to connect. Server accepts the connection. Now, what the heck do I do now? My host computer...

Is it possible to stream live using mod_h264 / pseudo streaming ?

I have Icecast and Darwin Streaming Server configured and running. Serving HE-AAC live radio. How can i utilize mod_h264 or other pseudo-streaming technologies to relay that stream to web page (with flowplayer or smth) ? Thanks in advance. ...

Java Shoutcast Query

Hi there, I have a Java IRC bot which i would like to query a shoutcast server and return basic information (song playing etc). Can someone guide me in the right direction? Thank you. ...

Android streaming from icecast server get track information

I have a stream from an icecast server downloading, and I can grab the information in the headers by doing the following: URLConnection cn = new URL(mediaUrl).openConnection(); cn.connect(); int pos=1; String x; String y; while (cn.getHeaderField(pos) != null) { x=cn.getHeaderFieldKey(pos); y = cn...

How could I play a shoutcast/icecast stream using HTML5?

Is it possible to play a shoutcast/icecast stream using HTML5? If so, how should I implement it? ...

How do I read .pls Files?

Hello, I am wanting to write a script to play the .pls files Shoutcast uses to broadcast, but I am not sure how to do that. I want to write it in Python. Any help would be great! ...