I'm working on an app which needs to modify metadata of audio files. I have played with Apple's official demo AVReaderWriterOSX. I have tried to set the metadata of AVAssetWriterInput and AVAssetWriter, but I still can't make it work to write metadata to the output file. Does anyone have any examples for this?

Thank you in advance.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I think I have found the solution. The simplest solution is to use AVAssetExportSession.

AVAssetExportSession *exportSession = [[AVAssetExportSession alloc]
    initWithAsset:asset presetName:AVAssetExportPresetMediumQuality];
exportSession.outputURL = ...;
exportSession.outputFileType = AVFileTypeQuickTimeMovie;
exportSession.timeRange = CMTimeRangeMake(startTime, duration);
exportSession.metadata = ...;
[exportSession exportAsynchronouslyWithCompletionHandler:handlerBlock];
link|improve this answer
Have you verified this doesn't re-encode the output file? – Johannes Rudolph Jan 1 at 16:23
2  
It's a lossless conversion if you use the "AVAssetExportPresetPassthrough" preset. – nonamelive Jan 2 at 15:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.