0

是否可以在 Adob​​e Flex Mobile 中嵌入和播放 m3u、ram 或 asx 音频流?

我有一个音频源,我想在我的应用程序中提供,但在连接它时遇到问题。谢谢。

JH

import flash.media.Sound;
import flash.media.SoundLoaderContext;
import flash.net.URLRequest;

var s:Sound = new Sound();
var req:URLRequest = new URLRequest('url to my stream');
var context:SoundLoaderContext = new SoundLoaderContext(8000, true);
s.load(req, context);
s.play();
4

0 回答 0