菜鸟教程小白 发表于 2022-12-13 05:08:37

ios - 修复了 RCMTLVideoView webrtc 的视频捕获方向


                                            <p><p>我有一个 iOS 应用,它仅在旋转设备时支持纵向,即使当 UI 的其余部分保持纵向时,RTCMTLVideoView 捕获的视频也会旋转到横向。</p>

<p>到目前为止,我发现的唯一解决方案是监听 <strong>UIDeviceOrientationDidChangeNotification</strong> 通知</p>

<pre><code>[ addObserver:selfselector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotificationobject:nil];
</code></pre>

<p>并禁用它</p>

<pre><code>- (void)orientationChanged:(NSNotification *)notification{
    NSLog(@&#34;orientation changed&#34;);
    [ endGeneratingDeviceOrientationNotifications];
}
</code></pre>

<p>有什么方法可以防止这种行为并在没有这种丑陋的解决方法的情况下将其锁定为纵向?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我的问题是前置摄像头拍摄的视频没有镜像。 </p>

<p>我修复了翻转 RCMTLVideoView 的问题</p>

<p><code>self.myRTCMTLVideoView.transform = CGAffineTransformMakeScale(-1.0, 1.0)</code> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 修复了 RCMTLVideoView webrtc 的视频捕获方向,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/53556005/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/53556005/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 修复了 RCMTLVideoView webrtc 的视频捕获方向