<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>《探索基于pion开发的WebRTC应用的建连过程》的评论</title>
	<atom:link href="http://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/feed/" rel="self" type="application/rss+xml" />
	<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/</link>
	<description>一个程序员的心路历程</description>
	<lastBuildDate>Wed, 25 Mar 2026 09:21:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>作者：bigwhite</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7808</link>
		<dc:creator>bigwhite</dc:creator>
		<pubDate>Wed, 05 Mar 2025 13:54:37 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7808</guid>
		<description>如果是做webrtc应用层开发，就看自己使用的语言（比如go、c++等）对应的webrtc框架如何使用。

如果要下沉到webrtc原理，那就需要结合着webrtc的spec看具体的webrtc实现（最初的实现是c++的）了。webrtc不是一种技术，而是一系列成熟技术的组合。spec有在RFC站点的，也要其他的（比如mozilla官网上的）。

如果还要学习媒体编解码，ffmpeg相关书籍和资料是不错的参考。</description>
		<content:encoded><![CDATA[<p>如果是做webrtc应用层开发，就看自己使用的语言（比如go、c++等）对应的webrtc框架如何使用。</p>
<p>如果要下沉到webrtc原理，那就需要结合着webrtc的spec看具体的webrtc实现（最初的实现是c++的）了。webrtc不是一种技术，而是一系列成熟技术的组合。spec有在RFC站点的，也要其他的（比如mozilla官网上的）。</p>
<p>如果还要学习媒体编解码，ffmpeg相关书籍和资料是不错的参考。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：小白</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7807</link>
		<dc:creator>小白</dc:creator>
		<pubDate>Wed, 05 Mar 2025 08:27:41 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7807</guid>
		<description>白哥能讲一下如何学习pion/webrtc吗，网上的相关教程比较少，只找到api doc</description>
		<content:encoded><![CDATA[<p>白哥能讲一下如何学习pion/webrtc吗，网上的相关教程比较少，只找到api doc</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：蛄蛹者</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7802</link>
		<dc:creator>蛄蛹者</dc:creator>
		<pubDate>Thu, 02 Jan 2025 09:16:54 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7802</guid>
		<description>如同一个http下载链接，既可以用http源下载，又可以通过webrtc建立p2p的datachannel连接跟同时在下载的人分享已下载的数据。</description>
		<content:encoded><![CDATA[<p>如同一个http下载链接，既可以用http源下载，又可以通过webrtc建立p2p的datachannel连接跟同时在下载的人分享已下载的数据。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：蛄蛹者</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7801</link>
		<dc:creator>蛄蛹者</dc:creator>
		<pubDate>Thu, 02 Jan 2025 09:12:38 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7801</guid>
		<description>差不多这个意思。</description>
		<content:encoded><![CDATA[<p>差不多这个意思。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：bigwhite</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7800</link>
		<dc:creator>bigwhite</dc:creator>
		<pubDate>Thu, 02 Jan 2025 01:23:00 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7800</guid>
		<description>那实际上就是通过webrtc建立p2p的datachannel连接后，在data channel上传文件数据呗。如果还要对文件传输的状态进行管理的话，可能需要在datachannel之上设计一个简单的文件传输协议。不知道有没有现成的类似于ftp over webrtc datachannel的实现。</description>
		<content:encoded><![CDATA[<p>那实际上就是通过webrtc建立p2p的datachannel连接后，在data channel上传文件数据呗。如果还要对文件传输的状态进行管理的话，可能需要在datachannel之上设计一个简单的文件传输协议。不知道有没有现成的类似于ftp over webrtc datachannel的实现。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：蛄蛹者</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7799</link>
		<dc:creator>蛄蛹者</dc:creator>
		<pubDate>Thu, 02 Jan 2025 01:08:05 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7799</guid>
		<description>不是BT那种大范围的，小范围或内部用，主要用到webrtc的打洞标准。</description>
		<content:encoded><![CDATA[<p>不是BT那种大范围的，小范围或内部用，主要用到webrtc的打洞标准。</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：bigwhite</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7798</link>
		<dc:creator>bigwhite</dc:creator>
		<pubDate>Tue, 31 Dec 2024 08:04:41 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7798</guid>
		<description>p2p下载用webrtc?</description>
		<content:encoded><![CDATA[<p>p2p下载用webrtc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：蛄蛹者</title>
		<link>https://tonybai.com/2024/12/26/exploring-the-connection-establish-process-of-webrtc-app-built-with-pion/#comment-7797</link>
		<dc:creator>蛄蛹者</dc:creator>
		<pubDate>Mon, 30 Dec 2024 05:50:18 +0000</pubDate>
		<guid isPermaLink="false">https://tonybai.com/?p=4452#comment-7797</guid>
		<description>可以教写一个基于webrtc的p2p下载库吗</description>
		<content:encoded><![CDATA[<p>可以教写一个基于webrtc的p2p下载库吗</p>
]]></content:encoded>
	</item>
</channel>
</rss>
