ios - RTCVideoTrack 显示拉伸(stretch)的 WebRTC
<p><p>我正在使用核心 <strong>WebRTC 框架</strong> 并在 iPhone 全屏模式下呈现我的本地流。不幸的是,我的视频显示拉伸(stretch),不像相机应用程序中的视频 View 那样显示。 </p>
<p>我尝试在 <code>RTCMediaConstraints</code> 中添加宽高比,还使用了 <code>adaptOutputFormatToWidth</code> 方法来修复输出。</p>
<pre><code>NSDictionary* mandatoryConstraints;
/* want to calculate aspect ratio dynamically */
NSString *aspectRatio = ;
if (aspectRatio) {
mandatoryConstraints = @{ kRTCMediaConstraintsMaxAspectRatio:
aspectRatio};
}
RTCMediaConstraints *cameraConstraints = ;
cameraConstraints = ;
RTCAVFoundationVideoSource *localVideoSource =;
;
</code></pre>
<p>在下面的链接中,显示了相机视频 View 和我的应用程序调用视频 View 之间的区别</p>
<p> <a href="https://drive.google.com/file/d/1HN3KQcJphtC3VzJjlI4Hm-D3u2E6qmdQ/view?usp=sharing" rel="noreferrer noopener nofollow">https://drive.google.com/file/d/1HN3KQcJphtC3VzJjlI4Hm-D3u2E6qmdQ/view?usp=sharing</a> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我相信您正在使用 <strong>RTCEAGLVideoView</strong> 渲染视频,这需要调整大小,您可以使用 <strong>RTCMTLVideoView</strong> 代替 <strong>RTCEAGLVideoView</strong>。</p>
<p>如果您想使用 RTCEAGLVideoView,请使用 RTCEAGLVideoViewDelegate 方法。</p>
<pre><code>- (void)videoView:(RTCEAGLVideoView *)videoView didChangeVideoSize:(CGSize)size;
</code></pre>
<p>此方法将为您提供正确的视频大小。</p></p>
<p style="font-size: 20px;">关于ios - RTCVideoTrack 显示拉伸(stretch)的 WebRTC,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/50699626/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/50699626/
</a>
</p>
页:
[1]