AVPlayer Video Blank but Hear Sound

前端 未结 3 563
小蘑菇
小蘑菇 2021-01-17 10:33

I\'m switching from MPMoviePlayerController to AVPlayer as I need finer grained control over video swapping. The .mov file I was playi

3条回答
  •  被撕碎了的回忆
    2021-01-17 11:00

    Since we use AVPlayerLayer (a subclass of CALayer), we need to set the frame

    - (void)viewDidLayoutSubviews {
        [super viewDidLayoutSubviews];
    
        self.avPlayerLayer.frame = self.movieContainerView.bounds;
    }
    

提交回复
热议问题