使用 Qt (QSound) 在 Symbian 上播放 WAV 文件

发布于 2024-10-22 12:46:37 字数 400 浏览 0 评论 0原文

我正在尝试播放 WAV 文件。 wikipedia.org/wiki/Symbian" rel="nofollow">Symbian 使用 Qt Creator。

我得到了这个:

QSound::play("c:/notify.wav");

它可以在 Windows 上运行,但是当我在 Symbian 上尝试时,它不会发出声音,但没有错误。

这很可能是因为它找不到该文件(C: 下没有 notify.wav 文件)

我怎样才能包含 WAV 文件,以便将其安装到 Symbian 设备上,以便我可以使用它玩路径吗?

I'm trying to play a WAV file in Symbian using Qt Creator.

I got this:

QSound::play("c:/notify.wav");

It works on Windows, but when I try it on Symbian it doesn't make a sound, but no error though.

This is most likely because it doesn't find the file (no notify.wav file under C:)

How can I include a WAV file so it gets installed to the Symbian device and so I can use its path to play it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

谁许谁一生繁华 2024-10-29 12:46:38

好的,成功了。

这就是我所做的:

.pro 文件中:

symbian: {
    sounds.sources = c:/notify.wav
    sounds.path = c:/
    DEPLOYMENT += sounds
}

在程序中:

QSound::play("c:/notify.wav");

这样它就可以在 Windows 和 Symbian 中工作。

OK, it worked.

This is what I did:

In the .pro file:

symbian: {
    sounds.sources = c:/notify.wav
    sounds.path = c:/
    DEPLOYMENT += sounds
}

In the program:

QSound::play("c:/notify.wav");

This way it works in Windows and in Symbian.

初雪 2024-10-29 12:46:37

在 .pro 文件中使用 DEPLOYMENT qmake 指令
例如:

symbian{
sounds.sources = path to your wav
sounds.path = ./thewav.wav
DEPLOYMENT += sounds
}

这会将 wav 部署到您的应用程序目录中。 QSound::play("notify.wav") 应该可以工作,如果没有尝试从 QApplication 获取目录的路径。

Use the DEPLOYMENT qmake instruction in your .pro file
e.g:

symbian{
sounds.sources = path to your wav
sounds.path = ./thewav.wav
DEPLOYMENT += sounds
}

This will deploy the wav in your app's directory. QSound::play("notify.wav") should work then, if not try to get the path to your directory from QApplication.

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