SKVideoNode中的AVPlayer无法播放

时间:2015-07-27 06:25:01

标签: ios avplayer skvideonode

我使用SKVideoNode实例初始化AVPlayer,当我调用AVPlayer's播放方法时,视频无法播放。但是当我调用SKVideoNode实例的播放方法时,它可以播放。

我必须使用AVPlayer而不是SKVideoNode的原因是我必须监控当前视频的当前时间,播放结束状态通知。但SKVideoNode没有这两种财产状态。

self.player = [[AVPlayer alloc] initWithURL:url];
self.videoNode = [SKVideoNode videoNodeWithAVPlayer:self.player];
//some other code are not related to this, so I omit them here

//These two observe can work
[self.player.currentItem addObserver:self forKeyPath:@"status" options:NSKeyValueObservingOptionNew context:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(itemDidFinishPlaying) name:AVPlayerItemDidPlayToEndTimeNotification object:self.player.currentItem];

//[self.player play]; This method doesn't make video play
[self.videoNode play];//This one does

1 个答案:

答案 0 :(得分:-1)

同时使用SKVideoNodeAVPlayer来提供更精细的播放控制并没有错。我假设您正在使用SKVideoNode因为正在使用SpriteKit,如果您需要的不仅仅是播放和暂停,您还需要AVPlaye r。

请注意,即使使用AVPlayer,您仍然会在SKVideoNode上调用播放和暂停。