Ошибка извлечения звука из видеофайла .m4v

Я пытаюсь извлечь аудиофайл из видео .m4v. Он показывает ошибку, например,

Error Domain=AVFoundationErrorDomain Code=-11800 "The operation could not be completed" UserInfo=0x15e350d0 {NSLocalizedDescription=The operation could not be completed, NSUnderlyingError=0x15d1c6b0 "The operation couldn’t be completed. (OSStatus error -12124.)", NSLocalizedFailureReason=An unknown error occurred (-12124)}

Это мой код:

-(void)extractAudioFromVideo{

    //Create a audia composition and add audio track
    AVMutableComposition *newAudioAsset = [AVMutableComposition composition];
    AVMutableCompositionTrack *dstCompositionTrack = [newAudioAsset addMutableTrackWithMediaType:AVMediaTypeAudio preferredTrackID:kCMPersistentTrackID_Invalid];

   //Get video asset from which the audio should be extracted
    NSURL *url      = [[NSBundle mainBundle] URLForResource:@"sample_iPod" withExtension:@"m4v"];
    AVAsset *srcAsset  = [AVAsset assetWithURL:url];

    NSArray *trackArray = [srcAsset tracksWithMediaType:AVMediaTypeAudio];
    if(!trackArray.count){
        NSLog(@"Track returns empty array for mediatype AVMediaTypeAudio");
        return;
    }

    AVAssetTrack *srcAssetTrack = [trackArray  objectAtIndex:0];

    //Extract time range
    CMTimeRange timeRange = srcAssetTrack.timeRange;

    //Insert audio from the video to mutable avcomposition track
    NSError *err = nil;
    if(NO == [dstCompositionTrack insertTimeRange:timeRange ofTrack:srcAssetTrack atTime:kCMTimeZero error:&err]){
        NSLog(@"Failed to insert audio from the video to mutable avcomposition track");
        return;
    }

    //Export the avcompostion track to destination path
    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex: 0];
    NSString *dstPath = [documentsDirectory stringByAppendingString:@"sample_audio.mp4"];
    NSURL *dstURL = [NSURL fileURLWithPath:dstPath];


    //Remove if any file already exists
    [[NSFileManager defaultManager] removeItemAtURL:dstURL error:nil];

    AVAssetExportSession *exportSession = [[AVAssetExportSession alloc]initWithAsset:newAudioAsset presetName:AVAssetExportPresetPassthrough];
    NSLog(@"support file types= %@", [exportSession supportedFileTypes]);
    exportSession.outputFileType = @"public.mpeg-4";
    exportSession.outputURL = dstURL;

    [exportSession exportAsynchronouslyWithCompletionHandler:^{
        AVAssetExportSessionStatus status = exportSession.status;

        if(AVAssetExportSessionStatusCompleted != status){
            NSLog(@"Export status not yet completed. Error: %@", exportSession.error.description);
        }
    }];
}

Как я могу решить эту ошибку?


person jailani    schedule 05.02.2014    source источник


Ответы (1)


Я проверил ваш код в симуляторе. Он отлично работает в симуляторе (IOS7). Но когда я запускаю iPodTouch-5, он показывает ошибку, как вы упомянули. Потратил более 15 минут, нашел и глупую ошибку.

Получение пути, как показано ниже (Documentssample_audio.mp4), когда я запускаю устройство.

@"file:///var/mobile/Applications/A1E1D85F-0198-4A0C-80F8-222F0DA1C31A/Documentssample_audio.mp4"

поэтому я изменил путь как..

NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex: 0];
NSString *dstPath = [documentsDirectory stringByAppendingString:@"/sample_audio.mp4"];

Теперь я получаю путь, как показано ниже (/Documents/sample_audio.mp4), и работаю нормально. Но я не знаю, как это случилось

@"file:///var/mobile/Applications/A1E1D85F-0198-4A0C-80F8-222F0DA1C31A/Documents/sample_audio.mp4"
person Mani    schedule 05.02.2014