meego无法播放mp3文件

发布于 2024-12-09 15:38:17 字数 306 浏览 0 评论 0原文

我尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

归途 2024-12-16 15:38:17

我还没有测试过这个,因为我的 N9 还没有到,但我认为以下应该可以工作:

Audio {
    id: sound
    source: "/sound.mp3"
    // Start playback as soon as clip is loaded
    onStatusChanged: if (Audio.Loaded == status) play()
}

请注意,与 WAV 相比,您可能会看到开始播放 MP3 时的延迟稍长,因为编码的剪辑需要一些时间在解码和播放之前,需要初始化本机多媒体框架的更多部分。

I haven't tested this, as my N9 hasn't arrived yet, but I think the following should work:

Audio {
    id: sound
    source: "/sound.mp3"
    // Start playback as soon as clip is loaded
    onStatusChanged: if (Audio.Loaded == status) play()
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文