8位PCMU编码器/解码器

发布于 2024-11-03 07:54:30 字数 174 浏览 1 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2024-11-10 07:54:30

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文