Como sou bem noob em Mac, ao ver essa extensão CAF, o que é isso??? Eu preciso compartilhar o áudio da reunião com uma colega e acredito que MP3 é uma escolha melhor.
Após dar uma googlada para ver se tem como fazer isto sem usar outras ferramentas, eu descobri que existe o afconvert que faz o trabalho.
Eu achei este post que mostra como converter CAF para AIF. Bacana, boa parte do caminho já estava andado. Contudo ele converte para AIF.
Mais uma googlada e encontrei neste outro post os formatos para criar um MP3.
#!/bin/sh
# now convert the CAF file to an MP3 fileafconvert -f mp4f -d aac "$0" "$1"Eu aproveitei e alterei o outro script que faz estas conversões em lote para trocar de AIF para MP3.
#!/bin/sh
## a script to convert every CAF sound file in the current# directory to a corresponding AIF sound file.## author: alvin alexander, devdaily.com## This work is licensed under the Creative Commons Attribution-Share Alike 3.0 # United States License: http://creativecommons.org/licenses/by-sa/3.0/us/#
# I've modified this script originally written in:# http://www.devdaily.com/mac-os-x/convert-caf-sound-file-aif-aiff-mp3-format
IFS=$'\n'
# list all CAF files in the current directory.# (the -1 character in this line is a "one", not an "el")for INFILE in $(ls -1 *.caf)do
# get the base filename by stripping off the ".caf" part baseFilename=`basename "${INFILE}" .caf`
# determine the preliminary output filename outfile="${baseFilename}.mp3"
# convert all spaces to hyphens outfile=`echo $outfile | tr -s " " "-"` echo "Converting \"$INFILE\" to \"$outfile\" ..."
# now convert the CAF file to an AIF file afconvert -f mp4f -d aac "$INFILE" "$outfile"
doneRápido e prático!

Meus fontes