web-dev-qa-db-ja.com

Swift:NSURLからユーザーカメラロールにビデオを保存する

NSURL型の変数videoURLがあります。

println(videoURL)を呼び出すと、次のようなものが返されます:http://files.parsetfss.com/d540f71f-video.mp4

このvideoURLを取得し、ユーザーのカメラロールにビデオを保存するボタンを設定しました。

私がやった最高のことはこれです:

UISaveVideoAtPathToSavedPhotosAlbum(videoPath: String!, completionTarget: AnyObject!, completionSelector: Selector, contextInfo: UnsafeMutablePointer<Void>)

これが機能するかどうかはわかりませんが、videoFile:NSURLvideoPathに変換する方法がわかりません。

これに関してどんな助けも歓迎します。

編集:

次は失敗します。

UISaveVideoAtPathToSavedPhotosAlbum(videoURL.relativePath, self, nil, nil)
20
George Poulos

AssetsLibraryは非推奨です

1:写真のインポート

import Photos

2:このコードを使用して、URLからカメラライブラリにビデオを保存します。

PHPhotoLibrary.sharedPhotoLibrary().performChanges({
             PHAssetChangeRequest.creationRequestForAssetFromVideoAtFileURL(nsUrlToYourVideo)
         }) { saved, error in
             if saved {
                 let alertController = UIAlertController(title: "Your video was successfully saved", message: nil, preferredStyle: .Alert) 
                 let defaultAction = UIAlertAction(title: "OK", style: .Default, handler: nil)
                 alertController.addAction(defaultAction)
                 self.presentViewController(alertController, animated: true, completion: nil)
             }
         }

Swift 3&Swift 4

PHPhotoLibrary.shared().performChanges({
    PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: urlToYourVideo)
}) { saved, error in
    if saved {
        let alertController = UIAlertController(title: "Your video was successfully saved", message: nil, preferredStyle: .alert)
        let defaultAction = UIAlertAction(title: "OK", style: .default, handler: nil)
        alertController.addAction(defaultAction)
        self.present(alertController, animated: true, completion: nil)
    }
}
47
Boris

受け入れられた答えは、Swift 3.0&iOS 10。

まず、アプリのplistファイルに次のアクセス許可を設定する必要があります。

プライバシー-写真ライブラリの使用法の説明

許可を要求している理由を説明する文字列をユーザーに提供します。

次に、写真をインポートします。

import Photos

最後に、Swift 3.の更新されたコードを示します。

PHPhotoLibrary.shared().performChanges({
    PHAssetChangeRequest.creationRequestForAssetFromVideo(atFileURL: fileURL)
}) { saved, error in
    if saved {
        let alertController = UIAlertController(title: "Your video was successfully saved", message: nil, preferredStyle: .alert)
        let defaultAction = UIAlertAction(title: "OK", style: .default, handler: nil)
        alertController.addAction(defaultAction)
        self.present(alertController, animated: true, completion: nil)
    }
}
8
CodeBender

NSURLからユーザーカメラロールにビデオを保存するには

func video(videoPath: NSString, didFinishSavingWithError error: NSError?, contextInfo info: AnyObject) 
 {
    if let _ = error {
       print("Error,Video failed to save")
    }else{
       print("Successfully,Video was saved")
    }
}







func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {

    if let conversationField = self.conversation {

      if (mediaType?.isEqual((kUTTypeMovie as NSString) as String))!
        {
            let theVideoURL: URL? = (info[UIImagePickerControllerMediaURL] as? URL)

            if (UIVideoAtPathIsCompatibleWithSavedPhotosAlbum((theVideoURL?.path)!))
            {
                UISaveVideoAtPathToSavedPhotosAlbum((theVideoURL?.path)!, self, #selector(ConversationDetailsViewController.video(videoPath:didFinishSavingWithError:contextInfo:)), nil)
            }   
   }
   self.dismiss(animated: true, completion: nil)
}

参照元:: https://www.raywenderlich.com/94404/play-record-merge-videos-ios-Swift

6
Disha

それを使用して、ビデオのURLを貼り付けてください:

PHPhotoLibrary.sharedPhotoLibrary().performChanges({ () -> Void in

    let createAssetRequest: PHAssetChangeRequest = PHAssetChangeRequest.creationRequestForAssetFromVideoAtFileURL(NSURL(string: /* your url */)!)!
    createAssetRequest.placeholderForCreatedAsset

    }) { (success, error) -> Void in
        if success {

            //popup alert success
        }
        else {
           //popup alert unsuccess
        }
}
0
Hacker Mane