8

有人知道如何从实时照片中提取视频部分吗?我正在开发一个将 Live Photo 转换为 GIF 的应用程序,第一步是从 Live Photo 中获取视频文件。看起来应该是可能的,因为如果您将手机插入 Mac,您可以看到单独的图像和视频文件。我在提取过程中遇到了一堵砖墙,我尝试了很多方法来做到这一点,但都失败了。

我做的第一件事是通过执行以下操作为我认为是 Live Photo 的视频部分的内容获取 PHAsset:

    if let livePhoto = info["UIImagePickerControllerLivePhoto"] as? PHLivePhoto {
        let assetResources = PHAssetResource.assetResourcesForLivePhoto(livePhoto)
        for assetRes in assetResources {
            if (assetRes.type == .PairedVideo) {
                let assets = PHAsset.fetchAssetsWithLocalIdentifiers([assetRes.assetLocalIdentifier], options: nil)
                if let asset = assets.firstObject as? PHAsset {

要将 PHAsset 转换为 AVAsset,我尝试过:

    asset.requestContentEditingInputWithOptions(nil, completionHandler: { (contentEditingInput, info) -> Void in

        if let url = contentEditingInput?.fullSizeImageURL {
            let movieUrl = url.absoluteString + ".mov"
            let avAsset = AVURLAsset(URL: NSURL(fileURLWithPath: movieUrl), options: nil)
            debugPrint(avAsset)
            debugPrint(avAsset.duration.value)
        }
    })

我认为这不起作用,因为带有 duration.value 的调试打印为 0。我也尝试过不添加“.mov”,但它仍然不起作用。

我也试过:

    PHImageManager.defaultManager().requestAVAssetForVideo(asset, options: nil, resultHandler: { (avAsset, audioMix, info) -> Void in
        debugPrint(avAsset)
    })

并且 debugPrint(avAsset) 打印 nil 所以它不起作用。

我有点担心他们可能无法做到这一点,我好像在绕圈子,因为我得到的 PHAsset 似乎仍然是一张实时照片,而不是真正的视频。

4

3 回答 3

16

使用PHAssetResourceManager来从PHAssetResource.

PHAssetResourceManager.defaultManager().writeDataForAssetResource(assetRes, 
    toFile: fileURL, options: nil, completionHandler: 
  {
     // Video file has been written to path specified via fileURL
  }

注意:Live Photo 特定的 API 是在 iOS 9.1 中引入的

于 2015-10-07T06:39:41.753 回答
0
// suppose you have PHAsset instance (you can get it via [PHAsset fetchAssetsWithOptions:...])

PHAssetResource *videoResource = nil;
NSArray *resourcesArray = [PHAssetResource assetResourcesForAsset:asset];

const NSInteger livePhotoAssetResourcesCount = 2;
const NSInteger videoPartIndex = 1;

if (resourcesArray.count == livePhotoAssetResourcesCount) {
   videoResource = resourcesArray[videoPartIndex];
}

if (videoResource) {
   NSString * const fileURLKey = @"_fileURL";
   NSURL *videoURL = [videoResource valueForKey:fileURLKey];

   // load video url using AVKit or AVFoundation
}
于 2017-02-06T13:08:29.257 回答
-2

我不小心做到了。我有一个名为 Goodreader 的 ios 应用程序(可在应用程序商店中获得),它具有类似 Windows 的文件管理器。导入实时照片时,会将其保存为以 .pvt 结尾的文件夹,其中包含 jpg 和 mov 文件。只有一个警告:在将实时照片发送给自己或其他人后,您需要从消息应用程序中打开实时照片以查看“导入到 goodreader”选项,而不是从照片应用程序。

于 2016-10-13T23:55:21.160 回答