WAV 文件的 MP3 编解码器

发布于 2024-08-24 14:19:26 字数 91 浏览 4 评论 0原文

Wav 文件支持不同的编码,包括 mp3。是否有一个 C/C++ 库可以从未压缩的 wav 生成 mp3 编码的 wav 文件?如果没有,那么开始实施的最佳位置是什么?

Wav files support different encodings, including mp3. Is there a C/C++ library that would produce mp3-encoded wav files from uncompressed wav? If not, what would be the best place to start to implement one?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜未央樱花落 2024-08-31 14:19:26
  1. 这确实是使用 Lame 的最佳方式(如果您不担心专利问题)。您可以使用 lame 和 lame_enc.dll 的两个源。使用lame_enc.dll 更容易。
    至于RIFF-WAV容器:它只是根据RIFF-WAV规范创建RIFF-WAV文件。

  2. 还有另一种可能性。例如使用 ACM 编解码器。

但无论如何,您应该能够在声音流前面添加 RIFF-WAV 标头。这可以手动完成(我认为是最简单的方法)或使用一些免费库(似乎 libsnd 能够做到这一点)。

  1. The best way indead to use Lame (if you do not afraid patent issues). You can use the both sources for lame and lame_enc.dll. Using the lame_enc.dll is more easier.
    As for RIFF-WAV container: it is simply to create RIFF-WAV files according to RIFF-WAV specification.

  2. There are another possibilities. For example using ACM codecs.

But in any case you should be capable to prepend sound stream with RIFF-WAV header. This can be done manaully (I think the simplest way) or by using some free library (it seems libsnd is capable to do this).

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