<?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>Comments on: Using FFMpeg to create YouTube clone script</title>
	<atom:link href="http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/</link>
	<description>Coding For Online Success</description>
	<lastBuildDate>Sat, 13 Feb 2010 19:26:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shandra</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-791</link>
		<dc:creator>Shandra</dc:creator>
		<pubDate>Wed, 06 Jan 2010 16:21:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-791</guid>
		<description>Which is better - FFMPEG OR RED5?</description>
		<content:encoded><![CDATA[<p>Which is better &#8211; FFMPEG OR RED5?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Oleksak</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-784</link>
		<dc:creator>Michael Oleksak</dc:creator>
		<pubDate>Fri, 18 Dec 2009 23:17:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-784</guid>
		<description>I will gladly pay anyone, who can develop a php upload script using the ffmpeg that is already installed on my server, so I can simply upload videos (in other formats) to be converted to FLV - like what YouTube does.

I am not building a Video Sharing site, I am trying to add some videos to some products in addition to the images which we can already upload.

I need to find somebody as soon as possible.
Michael
webmaster@koihosting.com
Thanks</description>
		<content:encoded><![CDATA[<p>I will gladly pay anyone, who can develop a php upload script using the ffmpeg that is already installed on my server, so I can simply upload videos (in other formats) to be converted to FLV &#8211; like what YouTube does.</p>
<p>I am not building a Video Sharing site, I am trying to add some videos to some products in addition to the images which we can already upload.</p>
<p>I need to find somebody as soon as possible.<br />
Michael<br />
<a href="mailto:webmaster@koihosting.com">webmaster@koihosting.com</a><br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marty Rogers</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-767</link>
		<dc:creator>Marty Rogers</dc:creator>
		<pubDate>Fri, 06 Nov 2009 11:31:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-767</guid>
		<description>Very nice article!  It was a BIG help for us this morning.</description>
		<content:encoded><![CDATA[<p>Very nice article!  It was a BIG help for us this morning.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ScriptoManiac</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-763</link>
		<dc:creator>ScriptoManiac</dc:creator>
		<pubDate>Wed, 04 Nov 2009 05:20:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-763</guid>
		<description>Thanks for sharing! :)</description>
		<content:encoded><![CDATA[<p>Thanks for sharing! <img src='http://www.money-code.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-505</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 08 Aug 2009 14:51:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-505</guid>
		<description>Hello Mils

I&#039;m guess they just have media-video/ffmpeg installed on the server.. not the extension for PHP (dev-php5/ffmpeg-php). In my example I&#039;m using a combination of the two. Where you see:

$cmd                            = $ffmpeg . &quot; -i &quot; . $wmvName . &quot; -ar &quot; . $srcAR . &quot; -ab &quot; . $srcAB . &quot; -acodec mp3 -f flv -deinterlace -nr 500 -s 320×240 -aspect 4:3 -r &quot;.$srcFPS.&quot; -b 270k -me_range &quot;.$srcFPS.&quot; -i_qfactor 0.71 -g 500 &quot; . $flvPath . &quot; &#124; &quot; . $flvtool2 . &quot; -U stdin &quot; . $flvPath;

I&#039;m using exec to manually use ffmpeg (not the extension).

Where you&#039;re seeing the object:
$ffmpegObj-&gt;getFrameRate

This is the extension. I use the extension to get additional information about the video. You might be able to figure out how to use the binary alone with exec() to get file information and skip the extension. I would still ask the host if they can install it.</description>
		<content:encoded><![CDATA[<p>Hello Mils</p>
<p>I&#8217;m guess they just have media-video/ffmpeg installed on the server.. not the extension for PHP (dev-php5/ffmpeg-php). In my example I&#8217;m using a combination of the two. Where you see:</p>
<p>$cmd                            = $ffmpeg . &#8221; -i &#8221; . $wmvName . &#8221; -ar &#8221; . $srcAR . &#8221; -ab &#8221; . $srcAB . &#8221; -acodec mp3 -f flv -deinterlace -nr 500 -s 320×240 -aspect 4:3 -r &#8220;.$srcFPS.&#8221; -b 270k -me_range &#8220;.$srcFPS.&#8221; -i_qfactor 0.71 -g 500 &#8221; . $flvPath . &#8221; | &#8221; . $flvtool2 . &#8221; -U stdin &#8221; . $flvPath;</p>
<p>I&#8217;m using exec to manually use ffmpeg (not the extension).</p>
<p>Where you&#8217;re seeing the object:<br />
$ffmpegObj->getFrameRate</p>
<p>This is the extension. I use the extension to get additional information about the video. You might be able to figure out how to use the binary alone with exec() to get file information and skip the extension. I would still ask the host if they can install it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mils</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-504</link>
		<dc:creator>Mils</dc:creator>
		<pubDate>Sat, 08 Aug 2009 06:29:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-504</guid>
		<description>Thanks for the quick reply

I am using the path but with this function in php

$ffmpeg                         = &quot;/usr/local/bin/ffmpeg&quot;;

extension_loaded($ffmpeg) or die(&#039;Error in loading ffmpeg&#039;);

it shows me the error so what path I can use. this path has been provided by support team of my server.</description>
		<content:encoded><![CDATA[<p>Thanks for the quick reply</p>
<p>I am using the path but with this function in php</p>
<p>$ffmpeg                         = &#8220;/usr/local/bin/ffmpeg&#8221;;</p>
<p>extension_loaded($ffmpeg) or die(&#8216;Error in loading ffmpeg&#8217;);</p>
<p>it shows me the error so what path I can use. this path has been provided by support team of my server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-503</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 08 Aug 2009 05:58:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-503</guid>
		<description>Hello Mils

I would try doing a exec() or file_exists() on that path. Depending on the server configuration, it may be permission issue or an issue with accessing the binary from your location (ie: chroot, etc).

hanji

[WORDPRESS HASHCASH] The poster sent us &#039;0 which is not a hashcash value.</description>
		<content:encoded><![CDATA[<p>Hello Mils</p>
<p>I would try doing a exec() or file_exists() on that path. Depending on the server configuration, it may be permission issue or an issue with accessing the binary from your location (ie: chroot, etc).</p>
<p>hanji</p>
<p>[WORDPRESS HASHCASH] The poster sent us &#8216;0 which is not a hashcash value.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mils</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-502</link>
		<dc:creator>Mils</dc:creator>
		<pubDate>Sat, 08 Aug 2009 05:21:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-502</guid>
		<description>Hello,

My server support saying they have installed the ffmpeg but only the criteria here is I used your code and add this code to check whethere the ffmpeg is loaded or not and it shows can not load ffmpeg

so can you tell me how to locate ffmpeg on server currently my server support saying they installed it here &#039;/usr/local/bin/ffmpeg&#039;</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>My server support saying they have installed the ffmpeg but only the criteria here is I used your code and add this code to check whethere the ffmpeg is loaded or not and it shows can not load ffmpeg</p>
<p>so can you tell me how to locate ffmpeg on server currently my server support saying they installed it here &#8216;/usr/local/bin/ffmpeg&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shanda</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-20</link>
		<dc:creator>shanda</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-20</guid>
		<description>how can I install the needed vital packages in the server of godaddy or how can I connect it to the server of godaddy?</description>
		<content:encoded><![CDATA[<p>how can I install the needed vital packages in the server of godaddy or how can I connect it to the server of godaddy?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ruFog</title>
		<link>http://www.money-code.com/2007/11/using-ffmpeg-to-create-youtube-clone-script/comment-page-1/#comment-64</link>
		<dc:creator>ruFog</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-64</guid>
		<description>Good article! It`s really help me to understand how to integrate video on my sites ;) Thanks!</description>
		<content:encoded><![CDATA[<p>Good article! It`s really help me to understand how to integrate video on my sites <img src='http://www.money-code.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->