当它调用exportAsync方法时,它立即失败,并在完成块中立即出现“Operation Stopped”错误(原因描述为:“此媒体不支持该操作”).这发生在模拟器和设备本身.请参阅下面的导出代码:
NSError *avError = nil; NSFileManager *fileManager = [NSFileManager defaultManager]; AVURLAsset *tmpAsset = [[AVURLAsset alloc] initWithURL:_tmpRecordingUrl options:@{AVURLAssetPreferPreciseDurationAndTimingKey: @YES}]; AVURLAsset *permAsset = [[AVURLAsset alloc] initWithURL:_url options:@{AVURLAssetPreferPreciseDurationAndTimingKey: @YES}]; AVMutableComposition *composition = [AVMutableComposition composition]; [composition insertTimeRange:CMTimeRangeMake(kCMTimeZero,permAsset.duration) ofAsset:permAsset atTime:kCMTimeZero error:&avError]; [composition insertTimeRange:CMTimeRangeMake(kCMTimeZero,tmpAsset.duration) ofAsset:tmpAsset atTime:CMTimeMakeWithSeconds(_positionSlider.value,1) error:&avError]; AVAssetExportSession *export = [[AVAssetExportSession alloc] initWithAsset:composition presetName:AVAssetExportPresetPassthrough]; if ([fileManager fileExistsAtPath:[_workingUrl path]]) { [fileManager removeItemAtURL:_workingUrl error:&avError]; } export.outputFileType = AVFileTypeWAVE; export.outputURL = _workingUrl; [export exportAsynchronouslyWithCompletionHandler:^(void) { // fails }];
我还确认“avError”永远不会被填充,因此插入timeRanges或创建导出会话似乎没有问题.我对资产进行了检查,它们都是可读的,可播放的和可导出的(根据obj上的bool值).
我错过了一些明显的东西吗?此代码适用于iOS6.如果我需要提供更多信息,请随时告诉我,并提前感谢您提供的任何方向!
编辑#1:我尝试添加跟踪机制,类似于这篇文章的内容:AVAssetExportSession – Join 2 mp4 files in IOS,但没有运气,同样的问题.此外,如果需要知道,当我从WAV切换到CAF时会发生同样的错误.这是我在尝试使用任何音频类型格式时打印supportedFileTypes时得到的结果:
( "com.apple.quicktime-movie","com.apple.m4a-audio","public.mpeg-4","com.apple.m4v-video","public.3gpp","org.3gpp.adaptive-multi-rate-audio","com.microsoft.waveform-audio","public.aiff-audio","public.aifc-audio","com.apple.coreaudio-format" )
由于音频格式在那里,并且导出器为可导出,可播放和可读的资产返回YES,我认为没有理由为什么它会因这种错误而失败.
编辑#2:一些额外的信息 – 即使我将代码剥离到最低限度,只是从NSURL创建一个AVAsset,然后通过直通预设将其提供给AVAssetExportSession,它仍然在iOS7中失败.我必须在这里找到一些东西.
我用视频(mp4)文件测试了这个SAME代码,它在iOS7中完美运行.我使用相同的代码并针对WAV,CAF和M4A文件进行了调整,每次都出现“此媒体不支持该操作”的失败.错误.
这是Apple代码中的错误,还是我们甚至无法使用iOS7对音频文件执行此操作?我在Apple的AV基础部分的“iOS7中的新功能”文档中没有看到任何具体的内容,在iOS6中,这似乎工作正常.我可能会在这方面聘请Apple.
解决方法
Thank you for contacting Apple Developer Technical Support (DTS). Our engineers have reviewed your request and have determined that you are experiencing a known bug for which there is no known workaround at this time.
他们指示我继续通过bugreport.apple.com提交bug,所以我这样做了.希望他们可以为它修复,因为我们有相当多的功能.
我希望这可以帮助其他人节省用于调试痛苦的时间,如果他们也遇到它!