8位PCMU编码器/解码器
我有 16 位 PCM 音频,我想将其转换为 8 位 PCMU。据我所知,16 位到 8 位的转换很容易 - 只需从每个样本中删除最后 8 位即可。
我想知道如何将8位pcm转换为8位pcmu?任何文章或示例代码都会很棒!
这是针对移动平台的,没有可用的现成框架,因此我需要通过自定义实现来做到这一点。
I have 16 bit PCM audio and I want to convert it to 8bit PCMU. As far as I know 16bit to 8 bit conversion is easy - just drop the last 8 bits from each sample.
I want to know how to convert 8 bit pcm to 8 bit pcmu? Any article or sample code will be great!
This is for a mobile platform where no ready-to-use frameworks are available so I will need to do that with custom implementation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看有关 μ-law 算法 的维基百科文章。
在底部提到了这篇文章< /a> 作者展示了如何用 C 代码将 16 个样本压缩为 8 位 PCMU 样本。将该代码移植到 Java 非常简单。
Check the wikipedia article regarding the μ-law algorithm .
At the bottom it mentions this article where the author shows how to compress 16 samples to 8 bit PCMU samples in C code. Porting that code to Java is trivial.