macbook 上的音频转换工具使用 afconvert

前两天需要使用短音效,原来在 android 上都是使用的 ogg 的格式,在 ios 上则需要使用 caff 的格式,找了半天没发现合适的 gui 工具。

发现苹果内置了一个命令行工具 afconvert 可以轻松解决这一问题。

具体使用方法如下:

afconvert -f caff -d 'ima4' -c 1 sample.mp3 sample.caf

如果需要批量转换可以使用以下命令:

find . -name '*.mp3' -exec afconvert -f caff -d 'ima4' {} \;

参数说明如下:

-f 文件格式

-d 数据格式

-c 声道


具体用法可以在命令行中输入 

afconvert -h

文件格式的详细信息可以输入

afconvert -hf




你可能感兴趣的:(ios,android,工具)