WAV 文件的 MP3 编解码器
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这确实是使用 Lame 的最佳方式(如果您不担心专利问题)。您可以使用 lame 和 lame_enc.dll 的两个源。使用lame_enc.dll 更容易。
至于RIFF-WAV容器:它只是根据RIFF-WAV规范创建RIFF-WAV文件。
还有另一种可能性。例如使用 ACM 编解码器。
但无论如何,您应该能够在声音流前面添加 RIFF-WAV 标头。这可以手动完成(我认为是最简单的方法)或使用一些免费库(似乎 libsnd 能够做到这一点)。
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.
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).
您检查过吗:http://lame.sourceforge.net/
Have you checked : http://lame.sourceforge.net/