gpt4 book ai didi

iphone - 从用户的 iTunes 库中导出视频

转载 作者:行者123 更新时间:2023-11-29 11:05:16 25 4
gpt4 key购买 nike

我已经搜索并阅读了文档,但我似乎无法找到解决我遇到的这个(看似简单的)问题的方法。我从用户的 iTunes 库中导出的歌曲工作正常,并且每次都可以毫无问题地下载到用户的文档文件夹中,但视频似乎无法正常工作。

我让它显示一个 MPMediaPickerController (allowsPickingMultipleItems = YES) 以允许用户从他们下载的库中选择视频或歌曲。完成后,这是我正在使用的相关代码:

- (void)mediaPicker:(MPMediaPickerController*)mediaPicker didPickMediaItems:(MPMediaItemCollection*)mediaItemCollection {
AVAssetExportSession *exportSession;

for (MPMediaItem *item in mediaItemCollection.items) {
NSURL *assetUrl = [item valueForProperty:MPMediaItemPropertyAssetURL];
MPMediaType type = [[item valueForProperty:MPMediaItemPropertyMediaType] intValue];
if (type >= MPMediaTypeMovie) {
exportSession = [[AVAssetExportSession alloc] initWithAsset:[AVAsset assetWithURL:assetUrl] presetName:AVAssetExportPreset640x480];
exportSession.outputFileType = AVFileTypeQuickTimeMovie;
filePath = [title stringByAppendingString:@".mov"];
exportSession.outputURL = [NSURL fileURLWithPath:[[NSFileManager documentDirectory] stringByAppendingPathComponent:filePath]];
} // .. check for song-types here and set session up appropriately

[exportSession exportAsynchronouslyWithCompletionHandler:^{
// never gets into AVAssetExportSessionStatusCompleted here for videos
}
}
}

我每次得到的错误如下:

Error Domain=AVFoundationErrorDomain Code=-11820 "Cannot Complete Export" UserInfo=0x1e1a2180 {NSLocalizedRecoverySuggestion=Try exporting again., NSLocalizedDescription=Cannot Complete Export}

帮助不大。 :( 我觉得我可能在这里遗漏了一些明显的东西。我这样做的方式是否正确?我试图将其“强制”为 MOV 格式是否可能存在问题?或者可能需要一种不同的设置方式导出 session ?

作为引用,我在我的 iPhone 5 上使用 iOS 6.0.1 进行测试,baseSDK 为 6.0。在此先感谢您提供的任何指导!

附加信息 #1:有些奇怪。如果我将 outputFileType 设置为“AVFileTypeAppleM4V”,它似乎会立即因“SIGTRAP”而崩溃。我想尝试 M4V,因为当我执行 assetURL 的日志输出时,我看到类似:ipod-library://item/item.m4v?id=12345。不知道这是否有所作为,但奇怪的是,如果我尝试使用 m4v 格式,它就会像那样崩溃。可能是因为它不在支持的文件类型列表中(请参阅下一个信息点)。

附加信息#2:我得到的支持的文件类型(通过调用“supportedFileTypes”方法是:“com.apple.quicktime-movie”和“public.mpeg-4”。 “exportPresetsCompatibleWithAsset”包括所有视频,包括 m4a、低/中/高质量和特定尺寸的视频。我已经尝试了所有这些的每一种组合,例如文件类型的 AVFileTypeQuickTimeMovie 和 AVFileTypeMPEG4,以及所有预设,包括低/中/高,以及所有维度。我总是会收到“无法完成导出”错误。

附加信息 #3:我还在使用 5.1 的部署目标。但是,是的,我试过 6.0,它给出了同样的错误。 :(

附加信息 #4:如果需要知道的话,我正在测试的电影是一部“试播”电视节目,一个视频,我在 iTunes 中看到的第一个免费视频。所以我下载了它用于这个应用程序。

附加信息 #5:不确定这是否重要,但是“hasProtectedContent”方法对 AVAsset(如果我转换的话,还有 AVURLAsset)返回 YES。可能不会有什么不同,但我想我会把它扔掉。

最佳答案

在尝试重现该问题并进行一些测试后,我强烈怀疑 protected 内容存在问题。原因如下:

我复制了您的代码,并在我的 iPod Touch(第 5 代,iOS 6.0.1)上对其进行了测试,但我只是让它循环播放设备上的所有视频(7它们中的。)它工作得很好,并调用了完成处理程序并在应用程序沙箱的文档目录中制作了正确的 .mov 文件。我将 .mov 文件移到了我的 Mac 上,它们都播放了。

这些视频文件的 hasProtectedContent 为 NO。

所以我放置了一个从 iTunes 商店获得的视频文件,并确认它的 hasProtectedContent 为 YES。有趣的是,当我尝试从 MPMediaItemPropertyAssetURL 获取 URL 时,我得到的 protected /iTunes 获取的视频为零。

我强烈怀疑媒体保护是问题所在。

这是我使用的代码变体。我根本没有更改您的转换代码,只是更改了 URL 的提供方式:

// select all the video files
MPMediaPropertyPredicate *predicate = [MPMediaPropertyPredicate predicateWithValue:[NSNumber numberWithInteger:MPMediaTypeMovie] forProperty:MPMediaItemPropertyMediaType];

MPMediaQuery *query = [[MPMediaQuery alloc] init];
[query addFilterPredicate:predicate];

NSArray *items = [query items];

// now go through them all to export them

NSString* title;
NSURL * url;
AVAssetExportSession *exportSession;
NSString *storePath;
AVAsset *theAsset;

// we fill put the output at this path
NSString *applicationDocumentsDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];


// loop through the items and export
for (MPMediaItem* item in items)
{
title = [item valueForProperty:MPMediaItemPropertyTitle];
url = [item valueForProperty:MPMediaItemPropertyAssetURL];

NSLog(@"Title: %@, URL: %@",title,url);

theAsset = [AVAsset assetWithURL:url];

if ([theAsset hasProtectedContent]) {
NSLog(@"%@ is protected.",title);
} else {
NSLog(@"%@ is NOT protected.",title);
}

exportSession = [[AVAssetExportSession alloc] initWithAsset:theAsset presetName:AVAssetExportPreset640x480];

storePath = [applicationDocumentsDir stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.mov",title]];

exportSession.outputFileType = AVFileTypeQuickTimeMovie;

exportSession.outputURL = [NSURL fileURLWithPath:storePath];

[exportSession exportAsynchronouslyWithCompletionHandler:^{
NSLog(@"done!");
}];

}

出于好奇,您是否正在检查 AVAsset exportable 标志?

关于iphone - 从用户的 iTunes 库中导出视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13925148/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com