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

我必须使用AVPlayer而不是SKVideoNode的原因是,我必须监视当前视频的currentTime,播放结束状态通知。但是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

最佳答案

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

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

关于ios - SKVideoNode中的AVPlayer无法播放,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31646201/

10-10 08:19