Hello
I am trying to make an internet radio player with Flash.
I am using this code:
Code:
var my_sound:Sound = new Sound();
my_sound.loadSound("URL_here", true);
The problem is that, some of the stations/url-s work and some of them wont work.
For example this is working fine:
Code:
var my_sound:Sound = new Sound();
my_sound.loadSound("http://stream05.akaver.com/skyplus_hi.mp3", true);
But this one is not working:
Code:
var my_sound:Sound = new Sound();
my_sound.loadSound("http://83.145.249.104", true);
I tried Native flash Radio V2, and with that the other url worked also. So I guess I am doing something wrong here.