tags:

views:

296

answers:

1

How can I convert my .caf sound files, in stereo, to mono ?

+1  A: 

From the terminal issue the following command:

afconvert -v -f caff -d ima4 -c 1 sourceFile.caf -o destFile.caf

The -c options comes from the afconvert help description that you get issuing

afconvert -h
unforgiven
WhenI try to use the command: afconvert mysourceFile.caf -o mymonosoundfile.caf -f caff -c 1I'm being prompted to help. I'm making some error ?
José Joel.
No, it was my fault. I have just edited and updated my answer, which now will work correctly producing a mono caf file which is also compressed (same quality, lower file size).
unforgiven
thanks, works fine now
José Joel.