我正在使用AVPLayer在UITableView中播放视频。视频播放正常但有时最初播放视频时,声音即将播出但屏幕为黑色。播放5-6秒后视频可见。我使用以下代码:
AVURLAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
playerItem = [AVPlayerItem playerItemWithAsset:asset];
AVPlayer *avPlayer = [AVPlayer playerWithPlayerItem:playerItem];
self.avPlayer = avPlayer;
__weak CLBAVPlayer *weakSelf = self;
[self.avPlayer addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(1.0 / 60.0, NSEC_PER_SEC)
queue:nil
usingBlock:^(CMTime time) {
[weakSelf progress];
}];
self.layer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;
请帮我弄清楚问题。
答案 0 :(得分:1)
我得到了答案。实际上问题是,当我获取图层并将其添加为子图层时,它不在主队列中。在主队列中使用dispatch_async
解决了我的问题。