We're trying to take an existing video with audio (.mov) and make a more email friendly version. Seems pretty straightforward and the code below does just what we need ... almost.

On an iPad2 (4.3.3) it works in debug & release builds all of the time. On the iPhone 4 (4.3.3) or 4th gen iPod Touch there's no audio. From time to time, no obvious correlation as to what triggers it, it will start working on the iPhone. Delete the app, rebuild/install, and it no longer works.

AVURLAsset* asset = [AVURLAsset URLAssetWithURL:[NSURL fileURLWithPath:sourcePath] options:nil];
session = [[AVAssetExportSession alloc] initWithAsset:asset
                                       presetName:AVAssetExportPresetLowQuality];
session.outputURL = [NSURL fileURLWithPath:destPath];
session.outputFileType = AVFileTypeQuickTimeMovie;
session.shouldOptimizeForNetworkUse = YES;
[session exportAsynchronouslyWithCompletionHandler:^{
    [self performSelectorOnMainThread:@selector(conversionFinished)
                           withObject:nil
                        waitUntilDone:NO]; }];
link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Are you playing the movie too, for example in an MPMoviePlayer? I have had some occasional export quirks while playing or using other initialized assets with the same URLs.

link|improve this answer
I've tested it both ways, no difference. We create the movie using AVAssetWriter and are calling [assetWriterInput markAsFinished] and [assetWriter finishWriting] on it. It plays on the device just fine (or on desktop after xfer). – Jer Jun 20 '11 at 21:03
Actually that's a GREAT clue! If I force-quit the app after making the recording and then go in to create the smaller video it works. So now to find out why. – Jer Jun 20 '11 at 21:12
5  
I swear this AV stuff requires voodoo to work properly. – Peter DeWeese Jun 21 '11 at 2:41
Another thought is memory. Getting any memory warnings? One time I was getting memory warnings and lost some of my tracks. – Peter DeWeese Jun 21 '11 at 2:44
Thanks for the tips, Peter. I went through the code to ensure that all other assets are released/finished and now it seems to have stabilized. Still need to put in a memory warning generator to see if that drives the problem. – Jer Jun 21 '11 at 10:19
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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