meego无法播放mp3文件
我尝试在 QML 中实现 QtMobilityKit 中的 SoundEffect 以在 Meego Harmattan 中播放音乐文件。 我发现它只能播放.wav 文件。 有没有可能在meego中播放.mp3文件?
这个可以玩
SoundEffect{
id: sound
source : "/sound.wav"
}
这个不能玩
SoundEffect{
id: sound
source : "/sound.mp3"
}
I tried to implement SoundEffect from QtMobilityKit in QML to play music file in Meego Harmattan.
I found that it can only play .wav file.
is there any possible way to play .mp3 file in meego?
This one can play
SoundEffect{
id: sound
source : "/sound.wav"
}
and this one cannot
SoundEffect{
id: sound
source : "/sound.mp3"
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我还没有测试过这个,因为我的 N9 还没有到,但我认为以下应该可以工作:
请注意,与 WAV 相比,您可能会看到开始播放 MP3 时的延迟稍长,因为编码的剪辑需要一些时间在解码和播放之前,需要初始化本机多媒体框架的更多部分。
I haven't tested this, as my N9 hasn't arrived yet, but I think the following should work:
Note that you may see a slightly longer delay in starting playback of the MP3 compared with the WAV, as the encoded clip requires some more parts of the native multimedia framework to be initialized before it can be decoded and played.