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);