Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从 iPhone 库中导入了一个视频,并对该视频应用了一些效果。问题是视频的方向(横向)错误。如何将视频旋转为纵向模式?
您是否尝试过在 AVPlayerLayer 上进行转换?
self.videoLayer = [AVPlayerLayer playerLayerWithPlayer:self.videoPlayer]; self.videoLayer.transform = CATransform3DMakeRotation(M_PI / 2.0f, 0, 0, 1);