转换mp3文件到wav?使用命令行?


Answers:


58

使用ffmpeg-默认安装

ffmpeg -i input.mp3 output.wav 

另类-mpg123

sudo apt-get install mpg123

然后将mp3转换为wav(使用-w选项)

mpg123 -w output.wav input.mp3

嗨,如果可以的话,您可以扩展它以在文件夹中的所有文件上运行吗?
kRazzy R

8
@kRazzyR:用于l中的f;做ffmpeg -i $ f $ {basename $ f).wav; 完成
datakid

1
@datakid看起来像语法荧光笔在代码中吃了几个符号。我已经将您的工作解决方案作为UPD添加到了答案中。
troyane
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.