菜鸟教程小白 发表于 2022-12-12 23:08:49

android - 如何在 WebRTC 中优雅地在网络之间切换?


                                            <p><p>假设我在 Wifi 上有一个已建立的 <code>PeerConnection</code>。如何在不中断 session 的情况下优雅地将网络切换到移动设备?</p>

<p>我显然可以停止一切并重新协商 session ,但我不认为这是解决方案。</p>

<p>还有 <code>iceConnectionReceivingTimeout</code> 和 <code>iceBackupCandidatePairPingInterval</code> 参数似乎是专门为这种情况设计的,但不幸的是,除了 <a href="https://groups.google.com/forum/#!topic/discuss-webrtc/CZP8GdRHboY" rel="noreferrer noopener nofollow">this post</a> 之外,我找不到任何关于如何使用它们的提示。显然只是设置它们没有任何作用。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如前所述,你不能。但是,如果您使用的是来自 chromium 的最新 WebRTC,则有一种方法可以最大限度地减少延迟。</p>
<p>最快的可用选项是捕获网络更改事件并通过在同一 <code>RTCPeerConnection</code> 中重新创建 <code>offer</code> 并使用 <code>iceRestart: true</code> 标记并发送给参与者。</p>
<p> <a href="https://w3c.github.io/webrtc-pc/#dom-rtcofferoptions" rel="noreferrer noopener nofollow">https://w3c.github.io/webrtc-pc/#dom-rtcofferoptions</a> </p>
<p>这将通过为 ICE 用户名和密码 fragment- <code>ufrag</code>/<code>pwd</code> 生成和使用新值来自动触发重新协商。</p>
<blockquote>
<p><strong>NOTE</strong></p>
<p>Performing an ICE restart is recommended when iceConnectionState
transitions to &#34;failed&#34;. An application may additionally choose to
listen for the iceConnectionState transition to &#34;disconnected&#34; and
then use other sources of information (such as using getStats to
measure if the number of bytes sent or received over the next couple
of seconds increases) to determine whether an ICE restart is
advisable.</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于android - 如何在 WebRTC 中优雅地在网络之间切换?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41098670/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41098670/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - 如何在 WebRTC 中优雅地在网络之间切换?