音频记录:每个样本的位数
AudioRecord 有方法获取 byte[]、short[] 形式的数据和字节缓冲区。
我在文档中看不到任何说明每个样本使用了多少位的信息。
可以8位录音吗? 16 位?更多的? (这是如何确定/设置的?)
返回 byte[]/ByteBuffer 的方法可以用于 16 位样本吗?如何区分最高有效字节/最低有效字节?
AudioRecord has methods to get the data as byte[], short[] and ByteBuffer.
I can't see anything in the documentation which says how many bits per sample are used.
Can it record in 8 bits? 16 bits? More? (How is this determined/set?)
Can the method which returns byte[]/ByteBuffer be used for 16 bit samples, and how would the most significant byte / least significant byte be differentated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大概这就是
getAudioFormat()
告诉你...Presumably this is what
getAudioFormat()
tells you...