JavaFX 2.0 AudioClip 无法在小程序中播放?

发布于 2024-11-28 17:22:22 字数 388 浏览 1 评论 0原文

好的,所以我在 JavaFX 2.0 中制作了一个小游戏,并且我有一个玩家每次射击时播放的射击声音。在桌面上运行良好,但在小程序上无法运行。

我想知道是否有人可以告诉我为什么小程序中不播放射击声音?

这是游戏的目录。 Galaxy.html 用于播放小程序。 单击此处转到游戏目录

这是加载音频剪辑的代码:

playerShot = new AudioClip(Galaxy.class.getClassLoader().getResource("playershot.mp3").toString());

Okay,so I made a small game in JavaFX 2.0, and I have a player shot sound which plays each time the player shoots. Works great on desktop, but doesn't play on applet.

I was wondering if anyone could tell me why the shot sound doesn't play in the applet?

Here is the directory with the game. galaxy.html is used to play the applet.
click here to go to game directory

And here is the code to load the audioclip:

playerShot = new AudioClip(Galaxy.class.getClassLoader().getResource("playershot.mp3").toString());

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

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

发布评论

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

评论(1

半世蒼涼 2024-12-05 17:22:22

JavaFX 2.0.1 中存在短 MP3 音频问题。解决方法是将其转换为 WAV 或 AIFF。要查看问题,请参阅 http://javafx-jira.kenai.com/browse/RT- 13945

There is an issue with short MP3 audio In JavaFX 2.0.1. A workaround is to convert it to WAV or AIFF. For viewing the issue see http://javafx-jira.kenai.com/browse/RT-13945.

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