I'm recording audio on an iPhone, using an AVAudioRecorder
with the following settings:
NSMutableDictionary *recordSettings = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithInt: kAudioFormatMPEG4AAC], AVFormatIDKey,
[NSNumber numberWithFloat:44100.0], AVSampleRateKey,
[NSNumber numberWithInt:1], AVNumberOfChannelsKey,
[NSNumber numberWithInt:12800], AVEncoderBitRateKey,
[NSNumber numberWithInt:16], AVLinearPCMBitDepthKey,
[NSNumber numberWithInt: AVAudioQualityHigh], AVEncoderAudioQualityKey,
nil];
(I can be flexible on most of these settings, but I have to use MPEG4 AAC.)
I save the audio to a file.
The user needs to be able to come back at a later date and continue recording to the same file. There doesn't seem to be an option to do this directly with AVAudioRecorder
, so instead I'm recording to a new file and concatenating them.
At the moment I'm appending the files using an AVMutableComposition
and an AVMutableCompositionTrack
as here, but it's really slow for longer recordings so this isn't really feasible.
I'm thinking it would be much quicker if I could strip the header from the second file, append the audio data to the first file, then alter the header of the combined file to reflect the new duration. As I know both files were created with exactly the same settings, I figure the other details in the headers should be identical.
Unfortunately I can't find any information about what format the headers are in, or if it's possible to combine files in this way.
So my questions are:
- What is the format of the MPEG-4 AAC file header, when created on an iPhone?
- Can I combine two audio files by messing with the headers like this?
- Is there a better way of appending two MPEG-4 AAC audio files almost instantaneously?
Though we ask the
AVAudioRecorder
to record in MPEG4-AAC format, it always produces a .caf (Core Audio Format) file. This is just a wrapper format, however, and the actual audio data it contains is in AAC format.In the end, appending files came down to manipulating the .caf files byte-by-byte. The spec for Core Audio Format files is here. Digesting this document and processing the files accordingly was a little off-putting at first, but it turns out the spec is very clear and complete, so it wasn't too onerous.
As the spec explains, .caf files consist of chunks with four-byte names at the beginning. For AAC files, there's always a
desc
chunk and akuki
chunk. As we know our two original files are in the same format, we can copy these chunks unchanged to the output file.There's also a
pakt
chunk and adata
chunk. We can't guarantee which order these will be in within the input files. There may or may not be afree
chunk - but this just contains padding 0x00's, so we needn't copy this to the output file.To combine the
pakt
chunks, we need to examine the chunk headers and produce a newpakt
chunk whosemNumberPackets
andmNumberValidFrames
fields are the sums of those in the input files. ThemPrimingFrames
andmRemainderFrames
are always zero - these are only relevant for streaming media. The bulk of thepakt
chunks (ie. the actual packet table data) can just be concatenated.Similarly for the
data
chunks: themChunkSize
fields need to be summed and then the bulk of the data can be concatenated.Be careful when reading data from all the binary numeric fields within these files: the files are big-endian but the iPhone is little-endian.
For extra credit, you might also like to consider deleting segments of audio from within a file, or inserting one audio file into the middle of another. This is a little trickier as you have to parse the contents of the
pakt
chunk. Again it's a case of following the spec: there's a good description of how the packet sizes are stored in variable-length integers, so you'll have to parse these to find how many bytes each packet takes up in thedata
chunk, and calculate their positions accordingly.All in all this is rather more hassle than I was hoping for. Maybe there's an open source library that will do all this for you, but I couldn't find one.
However, handling raw files like this is blinding fast compared to using
AVMutableComposition
andAVMutableCompositionTrack
as in the original question - inserting an hour-long recording into another of the same length takes about two seconds.Good luck!