web-dev-qa-db-ja.com

AVPlayerItemの再生が終了したことを検出する方法は?

私はAVPlayerItemAVPlayerのドキュメントを調べてきましたが、アイテムの再生が終了したときのコールバックがないようです。利用できるデリゲートコールバックがあるか、AVPlayerActionAtItemEndが独自のアクションを記述できるようにしたいと思っていました。

AVPlayerがアイテムの再生を終了したことを検出する方法を理解するにはどうすればよいですか?

19
3254523

NSNotificationを使用して、再生が終了したときに警告します。

通知に登録:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying:) name:AVPlayerItemDidPlayToEndTimeNotification object:playerItem];

完了時に呼び出すメソッド:

-(void)itemDidFinishPlaying:(NSNotification *) notification {
    // Will be called when AVPlayer finishes playing playerItem
}
43
random

Swift-i-fied(バージョン3)

class MyVideoPlayingViewController: AVPlayerViewController {

    override func viewDidLoad() {
        // Do any additional setup after loading the view.
        super.viewDidLoad()

        let videoURL = URL(fileURLWithPath: Bundle.main.path(forResource: "MyVideo", 
                                                                  ofType: "mp4")!)
        player = AVPlayer(url: videoURL)

        NotificationCenter.default.addObserver(self,
                                           selector: #selector(MyVideoPlayingViewController.animationDidFinish(_:)),
                                           name: .AVPlayerItemDidPlayToEndTime,
                                           object: player?.currentItem)
    }

    override func viewDidAppear(_ animated: Bool) {
        super.viewDidAppear(animated)
        player?.play()
    }

    func animationDidFinish(_ notification: NSNotification) {
        print("Animation did finish")
    }

    deinit {
        NotificationCenter.default.removeObserver(self)
    }

}
7
jhelzer

これは私がやった方法です。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(movieFinishedCallback:) name:AVPlayerItemDidPlayToEndTimeNotification object:player.currentItem];


- (void)movieFinishedCallback:(NSNotification*)aNotification
{
   // [self dismissViewControllerAnimated:YES completion:Nil];
}
0
nithinreddy