Skip to main content
Inspiring
March 5, 2010
Question

streaming radio shoutcast in flash

  • March 5, 2010
  • 1 reply
  • 1000 views

Hi folks, I was wandering if there is a way to use flash to stream a radio shoutcast, well actually i know that's posible, but i dont want an already made player, i have looking for a way to made it myself, anyone have a few tips about this?

thanks in advance.

This topic has been closed for replies.

1 reply

March 7, 2010

You know it's possible, so it seems you just need to do some searching re playing streaming audio with AS3. There's lots of good info...

To play an external audio file though you can do something like:

var s:Sound = new Sound();
s.load (new URLRequest("http://www.streamURL"));
var chan:SoundChannel = s.play();