菜鸟教程小白 发表于 2022-12-13 01:39:26

ios - 如何使用 AVFoundation 在 x 轴上翻转录制的视频?


                                            <p><p>从前置摄像头录制后,我得到了镜像视频。</p>

<p>录制完成后,我得到如下方法的输出:-</p>

<pre><code>- (void)captureOutput:(AVCaptureFileOutput *)captureOutput didFinishRecordingToOutputFileAtURL:(NSURL *)outputFileURL fromConnections:(NSArray *)connections error:(NSError *)error
</code></pre>

<p>如何在 x 轴上翻转它?所以保存后,它应该正确显示为记录。
请帮忙。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>基本上,您必须在捕获 session 设置期间设置捕获输出的视频输出连接:</p>

<pre><code>session.beginConfiguration()
//... Setup capture session   
if let videoOutputConnection = captureOutput?.connection(withMediaType: AVMediaTypeVideo) {
    if videoOutputConnection.isVideoMirroringSupported == true {
      videoOutputConnection.automaticallyAdjustsVideoMirroring = false
      videoOutputConnection.isVideoMirrored = true
    }
}
session.commitConfiguration()
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用 AVFoundation 在 x 轴上翻转录制的视频?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/44537336/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/44537336/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用 AVFoundation 在 x 轴上翻转录制的视频?