使用 Qt (QSound) 在 Symbian 上播放 WAV 文件
我正在尝试播放 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,成功了。
这就是我所做的:
在
.pro
文件中:在程序中:
这样它就可以在 Windows 和 Symbian 中工作。
OK, it worked.
This is what I did:
In the
.pro
file:In the program:
This way it works in Windows and in Symbian.
在 .pro 文件中使用 DEPLOYMENT qmake 指令
例如:
这会将 wav 部署到您的应用程序目录中。 QSound::play("notify.wav") 应该可以工作,如果没有尝试从 QApplication 获取目录的路径。
Use the DEPLOYMENT qmake instruction in your .pro file
e.g:
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.