<?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: How to Create a Time Lapse Video using FFMPEG</title>
	<atom:link href="http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/feed/" rel="self" type="application/rss+xml" />
	<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/</link>
	<description>Free tools and information maintained by an online entrepreneur.</description>
	<lastBuildDate>Thu, 04 Feb 2010 02:09:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: blog.flo.cx &#187; How to make time-lapse videos on a motorcycle&#8230;</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-42728</link>
		<dc:creator>blog.flo.cx &#187; How to make time-lapse videos on a motorcycle&#8230;</dc:creator>
		<pubDate>Tue, 05 Jan 2010 15:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-42728</guid>
		<description>[...] i used ffmpeg to extract images out of the video and to unite them to a timelapse video. using this tutorial and the man pages i was able to come up with this:  #!/bin/bash # sample usage: ./timelapsify.sh [...]</description>
		<content:encoded><![CDATA[<p>[...] i used ffmpeg to extract images out of the video and to unite them to a timelapse video. using this tutorial and the man pages i was able to come up with this:  #!/bin/bash # sample usage: ./timelapsify.sh [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sarah</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-41654</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Tue, 10 Nov 2009 02:01:39 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-41654</guid>
		<description>Just wanted to say, that I was looking online at how to speed a movie up in ffmpeg for a presentation and came across your page.  I cut and pasted the shell script into my /bin and I was good to go!  Thanks for doing the work for me!!  Much appreciated.</description>
		<content:encoded><![CDATA[<p>Just wanted to say, that I was looking online at how to speed a movie up in ffmpeg for a presentation and came across your page.  I cut and pasted the shell script into my /bin and I was good to go!  Thanks for doing the work for me!!  Much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: havoc</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-37864</link>
		<dc:creator>havoc</dc:creator>
		<pubDate>Thu, 30 Jul 2009 00:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-37864</guid>
		<description>I like mencoder&#039;s output better than ffmpeg (unless it&#039;s something you can use -sameq on), so I modified the script to look like this:

mkdir ffmpeg_temp
ffmpeg -i $1 -r $3 -f image2 ffmpeg_temp/%05d.png
# ffmpeg -i ffmpeg_temp/%05d.png -b 512 $2
cd ffmpeg_temp
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4 -o ../$2 -fps 20 &#039;mf://*png&#039;
cd ..
rm -rf ./ffmpeg_temp</description>
		<content:encoded><![CDATA[<p>I like mencoder&#8217;s output better than ffmpeg (unless it&#8217;s something you can use -sameq on), so I modified the script to look like this:</p>
<p>mkdir ffmpeg_temp<br />
ffmpeg -i $1 -r $3 -f image2 ffmpeg_temp/%05d.png<br />
# ffmpeg -i ffmpeg_temp/%05d.png -b 512 $2<br />
cd ffmpeg_temp<br />
mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4 -o ../$2 -fps 20 &#8216;mf://*png&#8217;<br />
cd ..<br />
rm -rf ./ffmpeg_temp</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PeEll</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-35245</link>
		<dc:creator>PeEll</dc:creator>
		<pubDate>Sun, 14 Jun 2009 22:52:49 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-35245</guid>
		<description>Very interesting strategy, and the best I have seen so far.  But what about filesize?  I&#039;m time-lapsing a 500MB .ogv file right now, and the intermediate files are going to take up around 4.5GB during the process.  It seems like there should be a way to do this without the massive intermediate storage requirements.</description>
		<content:encoded><![CDATA[<p>Very interesting strategy, and the best I have seen so far.  But what about filesize?  I&#8217;m time-lapsing a 500MB .ogv file right now, and the intermediate files are going to take up around 4.5GB during the process.  It seems like there should be a way to do this without the massive intermediate storage requirements.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simple time lapse video in Linux &#124; cenolan.com</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-32795</link>
		<dc:creator>Simple time lapse video in Linux &#124; cenolan.com</dc:creator>
		<pubDate>Sun, 10 May 2009 16:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-32795</guid>
		<description>[...] methods and suggestions but not really anything that suited what I wanted. Andrew Wells suggests making a movie and then processing it with ffmpeg to only store 1 in every n frames. That seems a neat solution but I wanted to take a series of [...]</description>
		<content:encoded><![CDATA[<p>[...] methods and suggestions but not really anything that suited what I wanted. Andrew Wells suggests making a movie and then processing it with ffmpeg to only store 1 in every n frames. That seems a neat solution but I wanted to take a series of [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vidal</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-30848</link>
		<dc:creator>Vidal</dc:creator>
		<pubDate>Thu, 16 Apr 2009 22:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-30848</guid>
		<description>Hi.
Just to say that I&#039;ve changed some part of the script to get 720x576 videos at high bps output (=high quality)
Maybe I will automate it so the parameters can be set from command line.
-------------------
mkdir ffmpeg_temp
ffmpeg -i $1 -r $3 -f image2 ffmpeg_temp/%05d.png
ffmpeg -i ffmpeg_temp/%05d.png -s 720x576 -b 9000k $2
rm -rf ./ffmpeg_temp</description>
		<content:encoded><![CDATA[<p>Hi.<br />
Just to say that I&#8217;ve changed some part of the script to get 720&#215;576 videos at high bps output (=high quality)<br />
Maybe I will automate it so the parameters can be set from command line.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
mkdir ffmpeg_temp<br />
ffmpeg -i $1 -r $3 -f image2 ffmpeg_temp/%05d.png<br />
ffmpeg -i ffmpeg_temp/%05d.png -s 720&#215;576 -b 9000k $2<br />
rm -rf ./ffmpeg_temp</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Wells</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-20225</link>
		<dc:creator>Andrew Wells</dc:creator>
		<pubDate>Sun, 30 Nov 2008 21:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-20225</guid>
		<description>Hi, jonobo.  Redistribution is allowed, but please see the license link at the bottom of this page for the legal details.</description>
		<content:encoded><![CDATA[<p>Hi, jonobo.  Redistribution is allowed, but please see the license link at the bottom of this page for the legal details.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jonobo</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-20224</link>
		<dc:creator>jonobo</dc:creator>
		<pubDate>Sun, 30 Nov 2008 21:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-20224</guid>
		<description>Cool Script. Did some good work for me ;)

I am interested in the &quot;reverse&quot;-Script too ;)

Yep. I know. I could do it all on my own - BUT - there is so much interesting to learn in this world that i need 1000Days per Day to do all the things that i want - so sometimes just copying a script i good. Writing it again would be useless ;)

Can i post this script in my just growing and absolutely chaotic Video-on-Linux-Wiki-Project?

Peace,

;j</description>
		<content:encoded><![CDATA[<p>Cool Script. Did some good work for me <img src='http://pr0gr4mm3r.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I am interested in the &#8220;reverse&#8221;-Script too <img src='http://pr0gr4mm3r.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Yep. I know. I could do it all on my own &#8211; BUT &#8211; there is so much interesting to learn in this world that i need 1000Days per Day to do all the things that i want &#8211; so sometimes just copying a script i good. Writing it again would be useless <img src='http://pr0gr4mm3r.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Can i post this script in my just growing and absolutely chaotic Video-on-Linux-Wiki-Project?</p>
<p>Peace,</p>
<p>;j</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Wells</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-10723</link>
		<dc:creator>Andrew Wells</dc:creator>
		<pubDate>Sun, 13 Jul 2008 00:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-10723</guid>
		<description>Awesome.  What did you do to reverse the video?</description>
		<content:encoded><![CDATA[<p>Awesome.  What did you do to reverse the video?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelly A</title>
		<link>http://pr0gr4mm3r.com/linux/how-to-create-a-time-lapse-video-using-ffmpeg/comment-page-1/#comment-10721</link>
		<dc:creator>Kelly A</dc:creator>
		<pubDate>Sat, 12 Jul 2008 23:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://wp.old.pr0gr4mm3r.com/2007/07/05/how-to-create-a-time-lapse-video-using-ffmpeg/#comment-10721</guid>
		<description>Thanks! In addition to the time lapse, I was also able to modify your script to reverse a video, which is another effect I hadn&#039;t found elsewhere.</description>
		<content:encoded><![CDATA[<p>Thanks! In addition to the time lapse, I was also able to modify your script to reverse a video, which is another effect I hadn&#8217;t found elsewhere.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
