<?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/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: Convert Video Formats Using&#160;FFMPEG</title> <atom:link href="http://davidwalsh.name/convert-video-ffmpeg/feed" rel="self" type="application/rss+xml" /><link>http://davidwalsh.name/convert-video-ffmpeg</link> <description>Legendary scribbles about JavaScript, HTML5, AJAX, PHP, CSS, and ∞.</description> <lastBuildDate>Thu, 09 Feb 2012 09:55:41 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>By: Jeff</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-27305</link> <dc:creator>Jeff</dc:creator> <pubDate>Thu, 20 Oct 2011 00:36:59 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-27305</guid> <description>Thunder (or anyone), I&#039;ve been trying to get FFmpeg working on WAMP for days. Can you please help me?I have found little info about installing and testing FFmpeg and flvtool2 on WAMP. I could really use someone&#039;s help.I already hFFmpegmpeg, flvtool2 and FFmpegmpeg installed but I&#039;m not sure if I have installed the correct versions of each so they all work together.Every test script I try gives some sort of error or I get a 0kb flv file. Maybe because the scripts are for NIX. I just don&#039;t know.If someone is willing to take the time, I surappreciaterechiate it :)Shoot me an email:jeffshead at hotmail.c0m</description> <content:encoded><![CDATA[<p>Thunder (or anyone), I&#8217;ve been trying to get FFmpeg working on WAMP for days. Can you please help me?</p><p>I have found little info about installing and testing FFmpeg and flvtool2 on WAMP. I could really use someone&#8217;s help.</p><p>I already hFFmpegmpeg, flvtool2 and FFmpegmpeg installed but I&#8217;m not sure if I have installed the correct versions of each so they all work together.</p><p>Every test script I try gives some sort of error or I get a 0kb flv file. Maybe because the scripts are for NIX. I just don&#8217;t know.</p><p>If someone is willing to take the time, I surappreciaterechiate it :)</p><p>Shoot me an email:</p><p>jeffshead at hotmail.c0m</p> ]]></content:encoded> </item> <item><title>By: Thunder</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-26337</link> <dc:creator>Thunder</dc:creator> <pubDate>Thu, 04 Aug 2011 05:43:33 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-26337</guid> <description>Ffmpeg is great for converting files but complex codec and parameters setting is often required when you are using it on linux. As far windows platform is concerned, Ffmpeg is awesome.</description> <content:encoded><![CDATA[<p>Ffmpeg is great for converting files but complex codec and parameters setting is often required when you are using it on linux. As far windows platform is concerned, Ffmpeg is awesome.</p> ]]></content:encoded> </item> <item><title>By: Boyd</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-15644</link> <dc:creator>Boyd</dc:creator> <pubDate>Wed, 27 Jan 2010 01:16:43 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-15644</guid> <description>BTW I just can&#039;t seem to be able to convert videos I get 0Kb files, but I am able to execute the same command from the command lineAny help would be appreciated, you can email me</description> <content:encoded><![CDATA[<p>BTW I just can&#8217;t seem to be able to convert videos I get 0Kb files, but I am able to execute the same command from the command line</p><p>Any help would be appreciated, you can email me</p> ]]></content:encoded> </item> <item><title>By: Boyd</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-15643</link> <dc:creator>Boyd</dc:creator> <pubDate>Wed, 27 Jan 2010 01:15:10 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-15643</guid> <description>Try this to create thumbnails, I have it working. You must have the GD library installed in order for this to work!//Only used to create an image with the same name as the video with .jpg ext
$thumb=substr(filename,0,(strlen(filename)-strlen(filetype)));
$command=&quot;ffmpeg -i &quot;.escapeshellarg(html_entity_decode(&quot;directory/to/video/filename&quot;)).&quot; -an -ss &quot;.escapeshellarg(&quot;00:00:08&quot;).&quot; -an -r 1 -vframes 1 -y -f mjpeg &quot;.escapeshellarg(html_entity_decode(&quot;directory/to/jpg/&quot;.$thumb.&quot;jpg&quot;));
//change this to your library path
shell_exec(&quot;export LD_LIBRARY_PATH=/usr/local/lib/&quot;);
shell_exec(&quot;nohup nice -n 1 $command &gt; /dev/null &amp; echo $!&quot;);
sleep(5);
chmod(&quot;&quot;.FILES_DIR.$file_id.&quot;-&quot;.$thumb.&quot;jpg&quot;,0700);This will create an image of the 8th second of the video</description> <content:encoded><![CDATA[<p>Try this to create thumbnails, I have it working. You must have the GD library installed in order for this to work!</p><p>//Only used to create an image with the same name as the video with .jpg ext<br
/> $thumb=substr(filename,0,(strlen(filename)-strlen(filetype)));<br
/> $command=&#8221;ffmpeg -i &#8220;.escapeshellarg(html_entity_decode(&#8220;directory/to/video/filename&#8221;)).&#8221; -an -ss &#8220;.escapeshellarg(&#8220;00:00:08&#8243;).&#8221; -an -r 1 -vframes 1 -y -f mjpeg &#8220;.escapeshellarg(html_entity_decode(&#8220;directory/to/jpg/&#8221;.$thumb.&#8221;jpg&#8221;));</p><p>//change this to your library path<br
/> shell_exec(&#8220;export LD_LIBRARY_PATH=/usr/local/lib/&#8221;);<br
/> shell_exec(&#8220;nohup nice -n 1 $command &gt; /dev/null &amp; echo $!&#8221;);</p><p> sleep(5);<br
/> chmod(&#8220;&#8221;.FILES_DIR.$file_id.&#8221;-&#8221;.$thumb.&#8221;jpg&#8221;,0700);</p><p>This will create an image of the 8th second of the video</p> ]]></content:encoded> </item> <item><title>By: Ronald Nicholls</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-15632</link> <dc:creator>Ronald Nicholls</dc:creator> <pubDate>Tue, 26 Jan 2010 20:00:52 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-15632</guid> <description>@David Walsh:  I&#039;m trying to use ffmpeg on my website to dynamically ge   t thumbnails created of flv fils, but it doesn&#039;t seem to work out that well. i have checked the php.info and made sure its installed correctly, but i was wondering how to do this with php, every method i have found isntworking.</description> <content:encoded><![CDATA[<p>@David Walsh:  I&#8217;m trying to use ffmpeg on my website to dynamically ge   t thumbnails created of flv fils, but it doesn&#8217;t seem to work out that well. i have checked the php.info and made sure its installed correctly, but i was wondering how to do this with php, every method i have found isntworking.</p> ]]></content:encoded> </item> <item><title>By: abdulla</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-14052</link> <dc:creator>abdulla</dc:creator> <pubDate>Tue, 01 Dec 2009 05:19:59 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-14052</guid> <description>I have converted video to FLV format. But the problem is File size is
0kb.So, Am not getting any perfect solution on this. IF any one knows Pls help me.</description> <content:encoded><![CDATA[<p>I have converted video to FLV format. But the problem is File size is<br
/> 0kb.</p><p>So, Am not getting any perfect solution on this. IF any one knows Pls help me.</p> ]]></content:encoded> </item> <item><title>By: sundaymicky</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-11812</link> <dc:creator>sundaymicky</dc:creator> <pubDate>Fri, 11 Sep 2009 03:42:51 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-11812</guid> <description>You can try Cucusoft DVD and Video converters suite which includes Cucusoft Ultimate DVD and Video Converter Suite. It is the best all-in-one DVD and video conversion software converts DVDs and videos to play on almost any portable device including iPod, iPhone, Zune, PSP, video capable MP3 players, video capable mobile phones, and Pocket P.C., etc.
You can free download this software free from here:
http://freedvdripper.org/dvdvideoconverter/cucusoft-ultimate-dvd-video-converter-suite.html</description> <content:encoded><![CDATA[<p>You can try Cucusoft DVD and Video converters suite which includes Cucusoft Ultimate DVD and Video Converter Suite. It is the best all-in-one DVD and video conversion software converts DVDs and videos to play on almost any portable device including iPod, iPhone, Zune, PSP, video capable MP3 players, video capable mobile phones, and Pocket P.C., etc.<br
/> You can free download this software free from here:<br
/> <a
href="http://freedvdripper.org/dvdvideoconverter/cucusoft-ultimate-dvd-video-converter-suite.html" rel="nofollow">http://freedvdripper.org/dvdvideoconverter/cucusoft-ultimate-dvd-video-converter-suite.html</a></p> ]]></content:encoded> </item> <item><title>By: Ronny's Concious</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-10198</link> <dc:creator>Ronny's Concious</dc:creator> <pubDate>Mon, 06 Jul 2009 17:52:40 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-10198</guid> <description>@Ronny: You need to install MacPorts:  http://www.macports.org/</description> <content:encoded><![CDATA[<p>@Ronny: You need to install MacPorts: <a
href="http://www.macports.org/" rel="nofollow">http://www.macports.org/</a></p> ]]></content:encoded> </item> <item><title>By: Ronny</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-10197</link> <dc:creator>Ronny</dc:creator> <pubDate>Mon, 06 Jul 2009 17:49:03 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-10197</guid> <description>I get this on my Mac: sudo: port: command not foundWhy?</description> <content:encoded><![CDATA[<p>I get this on my Mac: sudo: port: command not found</p><p>Why?</p> ]]></content:encoded> </item> <item><title>By: Alex</title><link>http://davidwalsh.name/convert-video-ffmpeg/comment-page-1#comment-10196</link> <dc:creator>Alex</dc:creator> <pubDate>Mon, 06 Jul 2009 17:05:11 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3023#comment-10196</guid> <description>@Vince:
I think http://ubuntuforums.org/showthread.php?t=561087 has your answer:&quot;To encode a .mov you&#039;ll need to use the target option.&quot;&lt;blockquote&gt;
ffmpeg -i input.avi -target X output.mov
Where X stands for a target type as defined in the FFmpeg docs
&lt;/blockquote&gt;</description> <content:encoded><![CDATA[<p>@Vince:<br
/> I think <a
href="http://ubuntuforums.org/showthread.php?t=561087" rel="nofollow">http://ubuntuforums.org/showthread.php?t=561087</a> has your answer:</p><p>&#8220;To encode a .mov you&#8217;ll need to use the target option.&#8221;</p><blockquote><p> ffmpeg -i input.avi -target X output.mov<br
/> Where X stands for a target type as defined in the FFmpeg docs</p></blockquote> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 2/18 queries in 0.040 seconds using disk: basic
Object Caching 865/868 objects using disk: basic

Served from: davidwalsh.name @ 2012-02-09 05:05:58 -->
