我非常努力地找到一個展示如何在Flash中播放speex編碼音頻的例子。我嘗試下面的代碼 -Adobe Flash:從文件中播放Speex音頻
var connect_nc:NetConnection = new NetConnection();
connect_nc.connect(null);
var stream_ns:NetStream = new NetStream(connect_nc);
stream_ns.play("RE-Sample.m4a");
avaible在 -
http://www.adobe.com/devnet/flashplayer/articles/hd_video_flash_player _03.html
我測試了FLV的視頻和AAC編碼的音頻文件上面的代碼,它工作得很好。但是當我嘗試stream_ns.play(「sample.spx」)時,我得到一個未找到的流異常。
我使用錯誤的容器(.spx)作爲speex音頻。從支持的文件播放speex音頻嗎?請幫忙!
(這將是巨大的,如果你能提供一個例子。)