如何在终端中将WAV转换为Apple无损?


10

我有很多不希望导入iTunes进行转换的WAV文件。太多了 我想要一种在导入iTunes之前将它们无损转换为Apple的方法。

Answers:


16

您需要在脚本(或xargs)中进行简短的循环循环,但您关心的命令是:

afconvert -d alac in.wav out.m4a

可以通过运行man afconvert或找到更多信息afconvert -h


1
简单的单线循环示例: for file in *.wav; do afconvert -d alac "$file" "${file%wav}m4a"; done
flori

afconvert输入格式的范围非常有限,我建议使用ffmpeg也具有内置alac编码器的输入格式,但支持大量音频格式,并且它还会尝试尽可能保留源中的元数据。例如 ffmpeg -i input.whatever -vn -c:a alac -f ipod output.m4a
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.