在我的清单文件中,我添加了权限中的音频频道内容:
"permissions": {
"audio-channel-content":{"description":"Use the audio channel for the music player"}
}
在我的index.html中,我有一个音频标签,如:
<audio mozaudiochannel="content" preload="none" src="http://my-stream-url"></audio>
我可以在2mn期间播放我的音频流:
锁定后是否可以播放超过1毫秒的音频流?
提前致谢。
答案 0 :(得分:0)
您拥有的代码和权限块是正确的,我可以确认它在Firefox OS 1.1中有效。您也可以在Javascript中完成所有工作:
audio = new Audio();
audio.preload = 'none';
audio.mozAudioChannelType = 'content';
答案 1 :(得分:0)
这是因为屏幕关闭(自动锁定)后wifi关闭了?
您使用的是开发版的gaia吗? Wifi设置为始终以产品版本连接。