将MP3从48000转换为44100 Hz?


24

我有一些MP3,采样频率为48000 Hz。我想将它们刻录到CD,因此必须将采样频率降低到441000。

如何使用ffmpeg做到这一点?

Answers:


43

ffmpeg看起来不是合适的工具;我通常会使用sox纯音频文件。

$ sox file1.mpg -r 44100 file1-enc.mpg

如果您ffmpeg仍然想尝试使用,我认为正确的命令是

$ ffmpeg -i file1.mpg -ar 44100 file1-enc.mpg

是的,Sox的音频效果更好,谢谢!
Michael Pliskin 2012年

6
ffmpeg自1.1开始支持sox重采样器
Benja 2014年

1
sox不能直接为我使用MP3。我必须安装libsox-fmt-mp3
gsmafra

9
ffmpeg是一个非常合适的工具,尽管在某种程度上它可能会显得过大。
大约

2
而且,如果您需要恒定比特率(CBR),则可以添加类似内容-b:a 64ktrac.ffmpeg.org/wiki/Encode/MP3)。
瑞安
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.