Ok, so I have a bunch of audio files sitting in a directory. My goal is append these files together sequentially and make them the single audio track of an AVAsset. I would like each one of these files to be one segment of the track, so that, when I open the file again, I can read the timestamp for each AVTrackSegment and jump from one segment to the next easily. This code seems to get me part of the way there:
AVMutableComposition *composition = [AVMutableComposition composition];
AVMutableCompositionTrack *audioTrack = [composition addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];
NSMutableArray *audioSegments = [NSMutableArray arrayWithCapacity:5];
CMTime currentTime = CMTimeMake(0, 600);
for (NSURL *url in urls) {
NSDictionary *dictionary = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:YES] forKey:AVURLAssetPreferPreciseDurationAndTimingKey];
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:url options:dictionary];
AVCompositionTrackSegment *audioSegment = [[AVCompositionTrackSegment alloc] initWithURL:url trackID:audioTrack.trackID sourceTimeRange:CMTimeRangeMake(CMTimeMake(0, 600), asset.duration) targetTimeRange:CMTimeRangeMake(currentTime, asset.duration)];
[audioSegments addObject:audioSegment];
currentTime = CMTimeAdd(currentTime, asset.duration);
[audioSegment release];
}
audioTrack.segments = audioSegments;
// create the export session
// no need for a retain here, the session will be retained by the
// completion handler since it is referenced there
AVAssetExportSession *exportSession = [AVAssetExportSession
exportSessionWithAsset:composition
presetName:AVAssetExportPresetAppleM4A];
exportSession.outputURL = [[self documentsFolder] URLByAppendingPathComponent:@"testfile.m4a"]; // output path
exportSession.outputFileType = AVFileTypeAppleM4A; // output file type
// perform the export
[exportSession exportAsynchronouslyWithCompletionHandler:^{
if (AVAssetExportSessionStatusCompleted == exportSession.status) {
} else if (AVAssetExportSessionStatusFailed == exportSession.status) {
} else {
}
}];
After this runs, I can find the file 'testfile.m4a' in my Documents folder. When I open it, it hear each of my audio files, one after the other, just the way I was hoping. The only problem is, when I open the file 'testfile.m4a' with the following lines:
AVURLAsset *urlAsset = [AVURLAsset URLAssetWithURL:fileURL options:nil];
NSArray *tracks = [urlAsset tracksWithMediaType:AVMediaTypeAudio];
AVAssetTrack *aTrack = [tracks objectAtIndex:0];
NSLog(@"%d", [aTrack.segments count] ); // <-- always prints "1"
I only have one segment in my audio file, no matter how many I created. So, does this mean that the AVAssetExportSession throws away segment information? Can I save it? Or do I need to switch to using AVAssetWriter or something else?
Basically, any recommendations about what the best way is to use AVFoundation to accomplish my goal would be greatly appreciated.