<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: mod_flvx</title>
	<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/</link>
	<description>Now with p2p Live Technology</description>
	<pubDate>Wed, 23 Jul 2008 23:32:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: virtualscribe</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1391</link>
		<dc:creator>virtualscribe</dc:creator>
		<pubDate>Fri, 18 Jan 2008 02:37:15 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1391</guid>
		<description>Paul,

I think it's so cool that you're using apache server to do seeking instead of putting the load on php instances.

But I can't follow how to seek to a spot in the flash media file.

In php streaming using xmoov.php to  scrub to a different spot the way to  get stuff done is call the php document, then use GET parameters to tack on the filename, position, and other builtin functions.

ns.play (_phpURL + "?file=" + _vidName + "&#38;position=" + positions[i] + "&#38;bw=" + bandwidth);

Here in your method you call the file using the following parameters visible in html:

http://HOST/FLVScrubber2/FLVScrubber2.swf?file=http://HOST/FILE.flv&#38;bufferTime=3&#38;startAt=0&#38;autoStart=false

So if I wanted to have to seek using the apache server mod, should I have my fla document use the GET method to the server and say something like:

ns.play("http://FLVScrubber2.swf?file="+myFile.flv+ "&#38;startAt=" positionOfDesiredSeek[i]);

So is the startAt function finding the nearest file position to seek using your apache mod?  Or do we need to write something more in our actionscript to tell apache the closest filepostion we would like to seek?  Because the issue   for a while with php seeking was that unless you had an exact file position, flash took some time before it got to your spot.  So someone built in some slick functions in php to do their file seeking.

I'm trying to understand what your mod is doing so that I can build some cool functionality on the scrubber bar, on the draggable triangle, and create some movieclips which act as markers during longer play of media.

Thanks</description>
		<content:encoded><![CDATA[<p>Paul,</p>
<p>I think it&#8217;s so cool that you&#8217;re using apache server to do seeking instead of putting the load on php instances.</p>
<p>But I can&#8217;t follow how to seek to a spot in the flash media file.</p>
<p>In php streaming using xmoov.php to  scrub to a different spot the way to  get stuff done is call the php document, then use GET parameters to tack on the filename, position, and other builtin functions.</p>
<p>ns.play (_phpURL + &#8220;?file=&#8221; + _vidName + &#8220;&amp;position=&#8221; + positions[i] + &#8220;&amp;bw=&#8221; + bandwidth);</p>
<p>Here in your method you call the file using the following parameters visible in html:</p>
<p><a href="http://HOST/FLVScrubber2/FLVScrubber2.swf?file=http://HOST/FILE.flv&amp;bufferTime=3&amp;startAt=0&amp;autoStart=false" rel="nofollow">http://HOST/FLVScrubber2/FLVScrubber2.swf?file=http://HOST/FILE.flv&amp;bufferTime=3&amp;startAt=0&amp;autoStart=false</a></p>
<p>So if I wanted to have to seek using the apache server mod, should I have my fla document use the GET method to the server and say something like:</p>
<p>ns.play(&#8221;http://FLVScrubber2.swf?file=&#8221;+myFile.flv+ &#8220;&amp;startAt=&#8221; positionOfDesiredSeek[i]);</p>
<p>So is the startAt function finding the nearest file position to seek using your apache mod?  Or do we need to write something more in our actionscript to tell apache the closest filepostion we would like to seek?  Because the issue   for a while with php seeking was that unless you had an exact file position, flash took some time before it got to your spot.  So someone built in some slick functions in php to do their file seeking.</p>
<p>I&#8217;m trying to understand what your mod is doing so that I can build some cool functionality on the scrubber bar, on the draggable triangle, and create some movieclips which act as markers during longer play of media.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chip</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1233</link>
		<dc:creator>chip</dc:creator>
		<pubDate>Fri, 23 Nov 2007 21:20:52 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1233</guid>
		<description>If you use httpd 2.2, this isn't a problem.

Using httpd 2.0.54, you would have to patch your apr-util to get the new apr_brigade_insert_file.</description>
		<content:encoded><![CDATA[<p>If you use httpd 2.2, this isn&#8217;t a problem.</p>
<p>Using httpd 2.0.54, you would have to patch your apr-util to get the new apr_brigade_insert_file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1232</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 23 Nov 2007 12:39:32 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1232</guid>
		<description>I'm getting the same error as nesq:
[root@test1 conf]# /opt/apache2/bin/apachectl -t
Syntax error on line 227 of /opt/apache2/conf/httpd.conf:
Cannot load /opt/apache2/modules/mod_flvx.so into server: /opt/apache2/modules/mod_flvx.so: undefined symbol: apr_brigade_insert_file

Running Apache/2.0.54

Anyone got any ideas how to fix this?</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting the same error as nesq:<br />
[root@test1 conf]# /opt/apache2/bin/apachectl -t<br />
Syntax error on line 227 of /opt/apache2/conf/httpd.conf:<br />
Cannot load /opt/apache2/modules/mod_flvx.so into server: /opt/apache2/modules/mod_flvx.so: undefined symbol: apr_brigade_insert_file</p>
<p>Running Apache/2.0.54</p>
<p>Anyone got any ideas how to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nesq</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1211</link>
		<dc:creator>nesq</dc:creator>
		<pubDate>Fri, 09 Nov 2007 23:26:41 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-1211</guid>
		<description>Syntax error on line 277 of /usr/local/etc/apache2/httpd.conf:
Cannot load /usr/local/libexec/apache2/mod_flvx.so into server: /usr/local/libexec/apache2/mod_flvx.so: Undefined symbol "apr_brigade_insert_file"</description>
		<content:encoded><![CDATA[<p>Syntax error on line 277 of /usr/local/etc/apache2/httpd.conf:<br />
Cannot load /usr/local/libexec/apache2/mod_flvx.so into server: /usr/local/libexec/apache2/mod_flvx.so: Undefined symbol &#8220;apr_brigade_insert_file&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhani</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-879</link>
		<dc:creator>dhani</dc:creator>
		<pubDate>Mon, 08 Oct 2007 19:16:26 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-879</guid>
		<description>it doesn't work.

I've compile and add the directive to the httpd.conf.

but when I open the flv url on the browser, it ask to download instead.

Apache/2.2.6</description>
		<content:encoded><![CDATA[<p>it doesn&#8217;t work.</p>
<p>I&#8217;ve compile and add the directive to the httpd.conf.</p>
<p>but when I open the flv url on the browser, it ask to download instead.</p>
<p>Apache/2.2.6</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: darix</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-115</link>
		<dc:creator>darix</dc:creator>
		<pubDate>Mon, 07 Aug 2006 09:19:59 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-115</guid>
		<description>&lt;a href='http://www.synd.info/downloads/releases/' rel="nofollow"&gt;http://www.synd.info/downloads/releases/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;

from my spec file:&lt;br /&gt;
Summary: Token-based authentication similar to mod_secdownload in LIGHTTPD.&lt;br /&gt;
description:
This module uses token based authentication to secure downloads and prevent
deep-linking.&lt;br /&gt;
&lt;br /&gt;
Have your PHP script or servlet generate the to authenticate the
download. Apache can then treat the download request like a normal file
transfer without having to pipe the file through a script in order to
add authentication.&lt;br /&gt;
&lt;br /&gt;
Authors:&lt;br /&gt;
---------&lt;br /&gt;
    Mikael Johansson (&lt;a href='http://www.synd.info' rel="nofollow"&gt;http://www.synd.info&lt;/a&gt;)

</description>
		<content:encoded><![CDATA[<p><a href='http://www.synd.info/downloads/releases/' rel="nofollow">http://www.synd.info/downloads/releases/</a></p>
<p>from my spec file:<br />
Summary: Token-based authentication similar to mod_secdownload in LIGHTTPD.<br />
description:<br />
This module uses token based authentication to secure downloads and prevent<br />
deep-linking.</p>
<p>Have your PHP script or servlet generate the to authenticate the<br />
download. Apache can then treat the download request like a normal file<br />
transfer without having to pipe the file through a script in order to<br />
add authentication.</p>
<p>Authors:<br />
&#8212;&#8212;&#8212;<br />
    Mikael Johansson (<a href='http://www.synd.info' rel="nofollow">http://www.synd.info</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jan@kneschke.de</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-114</link>
		<dc:creator>jan@kneschke.de</dc:creator>
		<pubDate>Mon, 07 Aug 2006 09:17:01 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-114</guid>
		<description>Looks like the second module that moves from lighty into apache world. first mod_sendfile and now this wonderful module. How about a port of mod_secdownload ? :)</description>
		<content:encoded><![CDATA[<p>Looks like the second module that moves from lighty into apache world. first mod_sendfile and now this wonderful module. How about a port of mod_secdownload ? <img src='http://journal.paul.querna.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: padonker@technoware.nl</title>
		<link>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-107</link>
		<dc:creator>padonker@technoware.nl</dc:creator>
		<pubDate>Tue, 25 Jul 2006 18:17:46 +0000</pubDate>
		<guid>http://journal.paul.querna.org/articles/2006/07/11/mod_flvx/#comment-107</guid>
		<description>Looks nice, but have absolutely NO idea how to make a mod from the source you so generously published ;)
Can you put a pre-cooked mod online as well? Pls respond by email
tnx
Patrick</description>
		<content:encoded><![CDATA[<p>Looks nice, but have absolutely NO idea how to make a mod from the source you so generously published <img src='http://journal.paul.querna.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> Can you put a pre-cooked mod online as well? Pls respond by email<br />
tnx<br />
Patrick</p>
]]></content:encoded>
	</item>
</channel>
</rss>
