<?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>《修改XBMC LiveStreams Python插件以支持中文》的评论</title>
	<atom:link href="https://zohead.com/archives/xbmc-livestreams-cn-patch/feed/" rel="self" type="application/rss+xml" />
	<link>https://zohead.com/archives/xbmc-livestreams-cn-patch/</link>
	<description>Uranus Zhou&#039;s Blog</description>
	<lastBuildDate>Wed, 26 Nov 2025 11:17:35 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8</generator>
	<item>
		<title>作者：admin</title>
		<link>https://zohead.com/archives/xbmc-livestreams-cn-patch/#comment-677</link>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 30 Oct 2013 07:35:53 +0000</pubDate>
		<guid isPermaLink="false">http://zohead.com/?p=299#comment-677</guid>
		<description><![CDATA[一个RTMP地址的格式是这样：
rtmp[e]://host[:port]/app/playpath

因此对于你给的地址应该是：
playpath 为 50756/100024?swax_k=_ver_tm_ar_sig&amp;swax_v=_1.0_1383123240_142_126c44c0e7
pageUrl 就是看直播视频的那个网页的地址了
swfUrl 就是那个网页实际用的SWF播放器的地址
live 表示是否是直播视频

另外保存在XML配置文件中需要注意特殊字符的转义处理，完整的应该是这样：
[code]
rtmp://61.182.132.36:1755/157 playpath=50756/100024?swax_k=_ver_tm_ar_sig&amp;swax_v=_1.0_1383120131_142_f9b15affb9 swfUrl=http://h3.ifengimg.com/34c4a1d78882290c/2013/0219/aplayer_r1_27.swf pageUrl=http://v.ifeng.com/live/#B4030356-977D-4258-A696-9739DB90F590 live=true
[/code]

你可以试试看
PS：有好的 livestreams 频道配置文件欢迎共享哈~~~]]></description>
		<content:encoded><![CDATA[<p>一个RTMP地址的格式是这样：<br />
rtmp[e]://host[:port]/app/playpath</p>
<p>因此对于你给的地址应该是：<br />
playpath 为 50756/100024?swax_k=_ver_tm_ar_sig&#038;swax_v=_1.0_1383123240_142_126c44c0e7<br />
pageUrl 就是看直播视频的那个网页的地址了<br />
swfUrl 就是那个网页实际用的SWF播放器的地址<br />
live 表示是否是直播视频</p>
<p>另外保存在XML配置文件中需要注意特殊字符的转义处理，完整的应该是这样：</p>
<pre class="brush: plain; title: ; notranslate">
rtmp://61.182.132.36:1755/157 playpath=50756/100024?swax_k=_ver_tm_ar_sig&amp;amp;swax_v=_1.0_1383120131_142_f9b15affb9 swfUrl=http://h3.ifengimg.com/34c4a1d78882290c/2013/0219/aplayer_r1_27.swf pageUrl=http://v.ifeng.com/live/#B4030356-977D-4258-A696-9739DB90F590 live=true
</pre>
<p>你可以试试看<br />
PS：有好的 livestreams 频道配置文件欢迎共享哈~~~</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：大弓</title>
		<link>https://zohead.com/archives/xbmc-livestreams-cn-patch/#comment-676</link>
		<dc:creator><![CDATA[大弓]]></dc:creator>
		<pubDate>Wed, 30 Oct 2013 06:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://zohead.com/?p=299#comment-676</guid>
		<description><![CDATA[请教下博主，我在用livestream这个插件时遇上这样的问题。利用urlsnooper抓取到凤凰卫视的直播地址如下：rtmp://61.182.132.35:1755/157/50756/100024?swax_k=_ver_tm_ar_sig&amp;swax_v=_1.0_1383123240_142_126c44c0e7；这个地址直接放入VLC播放器中能正常播放，但是将这个地址放入livestream的xml文件中添加后就无法播放，xbmc.log里面能找到提示错误“ERROR: RTMP_ReadPacket, failed to read RTMP packet header”及“ERROR: CDVDPlayer::OpenInputStream - error opening”

下面是我自定义的xml文件部分内容：
&lt;code&gt;
	
		测试
		rtmp://61.182.132.36:1755/ playpath=157/50756/100024?swax_k=_ver_tm_ar_sig&amp;swax_v=_1.0_1383120131_142_f9b15affb9 swfUrl=http://h3.ifengimg.com/34c4a1d78882290c/2013/0219/aplayer_r1_27.swf pageUrl=http://v.ifeng.com/live/#B4030356-977D-4258-A696-9739DB90F590
		
	
&lt;code&gt;
请问我这样的问题是出在哪？可能的话能否解释下xml文件中Playpath、swfUrl、pageUrl、live这些参数的含义及作用？谢谢！]]></description>
		<content:encoded><![CDATA[<p>请教下博主，我在用livestream这个插件时遇上这样的问题。利用urlsnooper抓取到凤凰卫视的直播地址如下：rtmp://61.182.132.35:1755/157/50756/100024?swax_k=_ver_tm_ar_sig&amp;swax_v=_1.0_1383123240_142_126c44c0e7；这个地址直接放入VLC播放器中能正常播放，但是将这个地址放入livestream的xml文件中添加后就无法播放，xbmc.log里面能找到提示错误“ERROR: RTMP_ReadPacket, failed to read RTMP packet header”及“ERROR: CDVDPlayer::OpenInputStream - error opening”</p>
<p>下面是我自定义的xml文件部分内容：<br />
<code></p>
<p>		测试<br />
		rtmp://61.182.132.36:1755/ playpath=157/50756/100024?swax_k=_ver_tm_ar_sig&amp;swax_v=_1.0_1383120131_142_f9b15affb9 swfUrl=http://h3.ifengimg.com/34c4a1d78882290c/2013/0219/aplayer_r1_27.swf pageUrl=http://v.ifeng.com/live/#B4030356-977D-4258-A696-9739DB90F590</p>
<p></code><code><br />
请问我这样的问题是出在哪？可能的话能否解释下xml文件中Playpath、swfUrl、pageUrl、live这些参数的含义及作用？谢谢！</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
