我使用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
答案 0 :(得分:-1)
同时使用SKVideoNode
和AVPlayer
来提供更精细的播放控制并没有错。我假设您正在使用SKVideoNode
因为正在使用SpriteKit
,如果您需要的不仅仅是播放和暂停,您还需要AVPlaye
r。
请注意,即使使用AVPlayer
,您仍然会在SKVideoNode
上调用播放和暂停。