AS3 Shoutcast流媒体无法在AIR 3.2中运行

时间:2013-01-19 18:42:49

标签: android actionscript-3 audio air streaming

我正在使用Adobe Flash CS6和ActionScript 3创建一个简单的移动无线电应用程序。下面的代码在针对Flash Player 11.2时效果非常好,但适用于iOS,Android和桌面的AIR 3.2无效。听不到声音但也没有发生错误。

var channel:SoundChannel;
var sound:Sound = new Sound();

sound.load(new URLRequest("http://groove.wavestreamer.com:9579/"));

channel = sound.play();

1 个答案:

答案 0 :(得分:0)

在你的声音之后输入。例如。

     sound = new Sound();
     sound.loadSound ("http://groove.wavestreamer.com:9579/;",true);

还可以查看this