How can you convert wav files with MPeg layer 3 (MPeg3) audio format to PCM?
如何将MPeg第3层(MPeg3)音频格式的wav文件转换为PCM?
3 个解决方案
#1
#3
If finding a windows binary of ffmpeg is too much work you can install foobar2k and do it from there
如果找到ffmpeg的windows二进制文件太多了,你可以安装foobar2k并从那里开始
#1
You could use FFMPEG called from the command-line, like so:
您可以使用从命令行调用的FFMPEG,如下所示:
ffmpeg -i source.wav -f wav -acodec pcm dest.wav
NOTE: Untested
Also, Windows binaries are available (I had some from another place as well) here.
此外,Windows二进制文件可用(我也有一些来自其他地方)。
#2
LibMAD could be what you are looking for.
LibMAD可能就是您想要的。
#3
If finding a windows binary of ffmpeg is too much work you can install foobar2k and do it from there
如果找到ffmpeg的windows二进制文件太多了,你可以安装foobar2k并从那里开始