I have simple video compression code in low quality conversion.I am testing my code in iphone 4 with IOS-4.2.1.The problem is when I test my code on device without break points the code failed to create video(it just a zero kb file or empty file created) but when I use breakpoint checking line by line this code slowly it will make a perfect compressed video which also runs on quicktime player in mac.After compression I make zip of this video file.

NSURL *videoURL=[[self.videourlarray objectAtIndex:i] valueForKey:UIImagePickerControllerReferenceURL];
        NSURL *outputURL = [NSURL fileURLWithPath:videoFile];

        [[NSFileManager defaultManager] removeItemAtURL:outputURL error:nil];
        AVURLAsset *asset = [AVURLAsset URLAssetWithURL:videoURL options:nil];
        AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPresetLowQuality];
        exportSession.outputURL = outputURL;
        exportSession.shouldOptimizeForNetworkUse = YES;
        exportSession.outputFileType = AVFileTypeQuickTimeMovie;
        [exportSession exportAsynchronouslyWithCompletionHandler:^(void) 
         {
             NSLog(@"Export Complete %d %@", exportSession.status, exportSession.error);
             [exportSession release];
         }];

thanx for any help...

link|improve this question

What's the export status? What happens if you don't release the exportSession? – Rhythmic Fistman Jul 7 '11 at 8:30
still no success after don't release export and exportSession.status is 3 and exportSession.error is null. – dh14-sl Jul 7 '11 at 10:05
Is your app exiting? – Rhythmic Fistman Jul 7 '11 at 10:43
no, no error no crash as i said sometime it will make exact video what i want and sometime it will make zerokb video file. – dh14-sl Jul 7 '11 at 13:50
feedback

1 Answer

I think you need to make sure you're not messing with the threads.. (AVFoundation guide says that the exporter is not guaranteed to run on any particular thread).

Use a block like this.

    [exportSession exportAsynchronouslyWithCompletionHandler:^(void) 
    {
    dispatch_async(dispatch_get_main_queue(), ^{
         NSLog(@"Export Complete %d %@", exportSession.status, exportSession.error);
            });

     }];

I would personally call a delegate from the block, but I presume your simple log statement is just for this example and you already know that :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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