2

だから私はこのカスタムクラスを使ってビデオを録画しています - https://github.com/piemonte/PBJVision。iOS アプリでビデオを録画しようとしていますが、解析サーバーにファイルをアップロードするコードを正しく取得できないようです。いくつかのこと:

  • PBJVision クラスでは、ビデオが記録された後、NSURL(fileWithPath:videoPath) を使用してアセットにアクセスできます。

  • アセット内のデータにアクセスして Parse に保存するには、次の関数を使用します。

     func vision(vision: PBJVision, capturedVideo videoDict: [NSObject : AnyObject]?, error: NSError?) {
    if error != nil {
        print("Encountered error with video")
        isVideo = false
    } else {
        let currentVideo = videoDict
        let videoPath = currentVideo![PBJVisionVideoPathKey] as! String
        print("The video path is: \(videoPath)")
    
        self.player = Player()
        self.player.delegate = self
        self.player.view.frame = CGRect(x: cameraView.frame.origin.x, y: cameraView.frame.origin.y, width: cameraView.frame.width, height: cameraView.frame.height)
    
        self.player.playbackLoops = true
    
        videoUrl = NSURL(fileURLWithPath: videoPath)
        self.player.setUrl(videoUrl)
    
        self.cameraView.addSubview(self.player.view)
        self.player.playFromBeginning()
        nextButton.hidden = false
        isVideo = true
    
        let contents: NSData?
        do {
            contents = try NSData(contentsOfFile: videoPath, options: NSDataReadingOptions.DataReadingMappedAlways)
        } catch _ {
            contents = nil
        }
    
        print(contents)
    
        let videoObject = PFObject(className: "EventChatroomMessages")
        videoObject.setValue(user, forKey: "user")
        videoObject.setValue("uG7v2KWBQm", forKey: "eventId")
        videoObject.setValue(NSDate(), forKey: "timestamp")
    
        let videoFile: PFFile?
        do {
            videoFile = try PFFile(name: randomAlphaNumericString(26) + ".mp4", data: contents!, contentType: "video/mp4")
            print("VideoFile: \(videoFile)")
        } catch _ {
            print("error")
        }
    
        print(videoFile)
    
        videoObject.setValue(videoFile, forKey: "image")
        videoObject.saveInBackgroundWithBlock {
            (success: Bool, error: NSError?) -> Void in
            if success == true {
                ProgressHUD.showSuccess("Video Saved.", interaction: false)
                dispatch_async(dispatch_get_main_queue()) {
                    ProgressHUD.dismiss()
                }
            } else {
                ProgressHUD.showError("Error Saving Video.", interaction: false)
                dispatch_async(dispatch_get_main_queue()) {
                    ProgressHUD.dismiss()
                }
            }
        }
    }
    

    }

次に、UITableView を使用して Parse からのデータを表示しています。アセットを Parse から AVPlayer() に取得する方法は次のとおりです。 y + nameLabel.frame.size.height + 0.0, self.view.frame.width, 150) player.view.backgroundColor = UIColor.whiteColor()

    let video = message.objectForKey("image") as! PFFile
    let urlFromParse = video.url!
    print(urlFromParse)

    let url = NSURL(fileURLWithPath: video.url!)
    print(url)

    let playerNew = AVPlayer(URL: url!)
    let playerLayer = AVPlayerLayer(player: playerNew)
    playerLayer.frame = CGRectMake(0.0, nameLabel.frame.origin.y + nameLabel.frame.size.height + 0.0, self.view.frame.width, 150)
    cell.layer.addSublayer(playerLayer)
    playerLayer.backgroundColor = UIColor.whiteColor().CGColor
    playerNew.play()

urlFromParse から返された値 ( http://parlayapp.herokuapp.com/parse/files/smTrXDGZhlYQGh4BZcVvmZ2rYB9kA5EhPkGbj2R2/58c0648ae4ca9900f2d835feb77f165e_file.mp4 ) をコピーしてブラウザに貼り付けると、ビデオがブラウザで再生されます。ファイルが正しく保存されていると仮定するのは正しいですか?

アプリを実行しようとすると、ビデオが再生されません。私が間違っていることについて何か提案はありますか?

4

1 に答える 1