与 iPad 相比,相同的应用程序/相同的代码在 iPhone 上的体积只有一半,为什么?
我使用的是 OpenAL,位置和增益值是一样的。 有类似经历吗?
I'm using OpenAL, location, and gain values just the same.
Any similar experiences?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为 iPhone 的扬声器功率不如 iPad。
与您的代码无关。
This is because the iPhone has a less powerful speaker than the iPad.
Nothing to do with your code whatsoever.
这是关于AVAudio会话的声音类别。
当它是 AVAudioSessionCategorySoloAmbient 或 AVAudioSessionCategoryAmbient 时,它很低,但是将其设置为 AVAudioSessionCategoryPlayback 解决了问题。
It is about the sound category of AVAudio session.
When it is AVAudioSessionCategorySoloAmbient, or AVAudioSessionCategoryAmbient, then it was low, but setting it to AVAudioSessionCategoryPlayback solved the problem.