如何访问从URl下载的保存文件路径

How to access the saved file path downloaded from URl

我已使用此过程从 link 下载文件。现在我想要访问此视频并使用 APPPlayer 播放的文件路径:

 @IBAction func btnplayClicked(sender: AnyObject) {

    let videoImageUrl = "https://devimages-cdn.apple.com/samplecode/avfoundationMedia/AVFoundationQueuePlayer_HLS2/master.m3u8"
            dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), {
                let url = NSURL(string: videoImageUrl);
                let urlData = NSData(contentsOfURL: url!);
                if(urlData != nil)
                {
                    let documentsPath = NSSearchPathForDirectoriesInDomains(.DocumentDirectory, .UserDomainMask, true)[0];
                    let filePath="\(documentsPath)/video.mp4";
                    dispatch_async(dispatch_get_main_queue(), {
                        urlData?.writeToFile(filePath, atomically: true);
                        PHPhotoLibrary.sharedPhotoLibrary().performChanges({
                            PHAssetChangeRequest.creationRequestForAssetFromVideoAtFileURL(NSURL(fileURLWithPath: filePath))
                        }) { completed, error in
                            if completed {
                                print("Video is saved!")
 if let path = NSBundle.mainBundle().pathForResource("video", ofType: ".mp4")
                                        {
                                            let apath = NSURL(fileURLWithPath: path)
                                            let video = AVPlayer(URL: apath)
                                            let videoPlayer = AVPlayerViewController()
                                            videoPlayer.player = video
                                           self.presentViewController(videoPlayer, animated: true, completion: {
                                                video.play()
                                            })
                                        }
                            }
                        }
                    })
                }
   })
}

视频已下载,我可以在 gallery.But 上看到它 AVPlayer 无法播放视频..我在这里做错了什么..?

您是否尝试直接从缓存路径加载 AVPlayer?这样做:

if completed {
    let video = AVPlayer(URL: NSURL(fileURLWithPath: filePath))
    let videoPlayer = AVPlayerViewController()
    videoPlayer.player = video
    self.presentViewController(videoPlayer, animated: true, completion: {
        video.play()
    })
}

AS iOS greek 希腊语告诉你访问的路径错误,你可以用这个方法来做:

if completed {


dispatch_async(dispatch_get_main_queue(), {
                                        // Call UI related operations
let apath = NSURL(fileURLWithPath: filePath)
let video = AVPlayer(URL: apath)
let videoPlayer = AVPlayerViewController()
 videoPlayer.player = video
self.presentViewController(videoPlayer, animated: true, completion: {
 video.play()
 })
 })
}