to convert m4a file to caf, i was try to look in the setting of the export and didn't find way to convert it to wav instead.
there is a way to convert the caf to wav? there is a more good way to convert m4a to wav?
to convert m4a file to caf, i was try to look in the setting of the export and didn't find way to convert it to wav instead.
there is a way to convert the caf to wav? there is a more good way to convert m4a to wav?
Sorry if i am quite late to the party. Though i am answering and sharing my knowledge on this issue if it helps anyone.
Converting caf file to wav file isn't too hard. caf and wav both format contains raw PCM data, the only difference is their header info. So if you just replace caf header with wav then it will do the tricks. Just get the PCM data from the caf file and add the wav header on top of the extracted PCM data. To add wav header with PCM data, check this link.
peek at the AudioFile and ExtAudioFile APIs (in AudioToolbox).