JavaFX 2.0 AudioClip 无法在小程序中播放?
好的,所以我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.