使用 AndEngine 限制声音播放
AndEngine 中声音的播放时长是否有限制?我试图让我的应用程序播放声音,但它只播放歌曲的前 6 秒。有办法改变这个吗?
Is there a limit to how long a sound can be played out for in AndEngine? I'm trying to get my app to play a sound and it's only playing about the first 6 seconds of the tune. Is there a way to change this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否正在播放五个以上的声音并使用默认构造函数?如果是这样,也许其中一个流被切断以播放新的声音。
尝试使用更多并发流来初始化 SoundManager。
Are you playing more than five sounds and using the default constructor? If so, perhaps one of the streams is being cut off to play a new sound.
Try initializing SoundManager with more simultaneous streams.
迟到的答案,但对于更长的声音,你应该使用 Andengine 的 Music 类,而不是 Sound。我相信声音是为了较短的音效。
Late answer but for longer sounds you should be using Andengine's Music class, not Sound. Sound is for shorter sound effects I believe.