<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Willy&#039;s Disconnected Thoughts on Randomness &#187; Video</title>
	<atom:link href="http://worldwidewilly.immortalkeep.com/thoughts/tag/video/feed" rel="self" type="application/rss+xml" />
	<link>http://worldwidewilly.immortalkeep.com/thoughts</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 05 Feb 2012 19:48:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ffmpeg</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2012/guide/ffmpeg</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2012/guide/ffmpeg#comments</comments>
		<pubDate>Sun, 05 Feb 2012 19:48:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Guide]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=223</guid>
		<description><![CDATA[I recently discovered the wonders of ffmpeg, a command line based utility designed to convert media. Instead of messing around with online converters, or trying to use some &#8220;free&#8221; program that doesn&#8217;t quite do what you want — you just plug in your input and output and ffmpeg does all the work. As I&#8217;ve used [...]]]></description>
			<content:encoded><![CDATA[<p>I recently discovered the wonders of ffmpeg, a command line based utility designed to convert media. Instead of messing around with online converters, or trying to use some &#8220;free&#8221; program that doesn&#8217;t quite do what you want — you just plug in your input and output and ffmpeg does all the work. As I&#8217;ve used Ubuntu more and more I have discovered that though people have come up with a number of good interfaces and programs, there is real power in the peculiar, off-putting syntax of the command line. Once an adjustment to accept the command line is made, things can progress smoothly. If you have any problems let me know in the comments and I will answer you and amend this guide. It should be noted that this guide is designed with Ubuntu in mind. Now, on with the brief ffmpeg guide.</p>
<h2>Installing</h2>
<ol>
<ol>
<li>Open a terminal window (when you don&#8217;t know where to find a program, hit the Windows button (known as the super button by Ubuntu) and type the name into the box that appears).</li>
<li>Type <code>sudo apt-get install ffmpeg</code>. <code>sudo</code> means do this as root a.k.a. administrator. <code>apt-get</code> is a program, <code>install</code> is a function of the program, and <code>ffmpeg</code> is the parameter to the <code>install</code> function telling it what program we want installed. Terminal will print some text, it might say that you already have it, excellent continue onwards. Else, if it gives you the option to install it, type <code>Y</code> and let it continue on its merry way.</li>
<li>Type <code>sudo apt-get install libavcodec-extra-53</code>. This is an library that has additional codecs that you&#8217;ll probably want.</li>
<li>Now you should be all set up to start converting</li>
</ol>
</ol>
<h2>ffmpeg Commands and Structure</h2>
<p>ffmpeg has a lot of commands for manipulating media. The program is controlled through the command line.  A basic command that you might enter into terminal looks like this:</p>
<p><code>ffmpeg -ss 00:00:10 -i gold.mp4 -t 00:03:33 -acodec copy -vcodec copy gold.mp4</code></p>
<p>Notice that you always start the line with the program you want to use (except when you are treating the running of the program in a certain way, such as with <code>sudo</code>.  Next comes a series of option-argument pairs, options for the program followed by the value of that option: <code>-option arguement</code>.  One example is the input option followed by the name of the input file <code>-i gold.mp4</code>.  At the very end of the command is the output file name.  Notice that there is no <code>-option</code> preceding it, it is simply the parameter entered into ffmpeg (like <code>ffmpeg</code> was the parameter for <code>apt-get install</code>).  It&#8217;s not necessary to specify every option as most have default settings if nothing is specified.  In ffmpeg Here&#8217;s a list of some of the options for ffmpeg:</p>
<ul>
<li><code>-ss hh:mm:ss</code> Specify the start location. Note that this should come before <code>-i</code></li>
<li><code>-i xxxxx.yyy</code> The input file ffmpeg will base this operation on.</li>
<li><code>-t hh:mm:ss</code> Specify the duration of the output file (relative to the start location).  Note that this should come after <code>-i</code>.</li>
<li><code>-acodec codec</li>
<p> The output audio codec.  Most of the time ffmpeg will guess this parameter automatically based on you output file. For example if the output file is <code>gold.mp3</code>, then ffmpeg will automatically use <code>libmp3lame</code> as audio codec, no input required.  The only time I've needed this option is to specify something other than what ffmpeg was automatically guessing, or to specify <code>-acodec copy</code>, which makes ffmpeg use the exact same audio codec as the source.</li>
<li><code>-vcodec codec</li>
<p> Used for specifying the video codec to use.  All the usage rules of the <code>-acodc</code> apply to this one.  Don't forget <code>-vcodec copy</code> if you want the output video to be the same as the input.</li>
<li><code>-ar xxx</code> Specifies the audio sample rate.  If unspecified it will use the default of the codec or the same as the input file (I'm not quite sure which).  You do no good specifying a sample rate higher than that of the input, because it will yield no better quality.  On the other hand, a lower sample rate will make for a smaller file (at the cost of quality).</li>
<li><code>-vn</code> Disable video recording.</li>
<h2>Converting</h2>
<p><code>ffmpeg -i -ss 00:00:10 gold.mp4 -vn -t 00:03:33 gold.mp3</code></p>
<p>The above line takes the input file gold.mp4, starts ten seconds in and records for a total of three minutes and thirty-three seconds, before outputting the file as an mp3.</p>
<p>I am still pretty new to this.  One thing I can't understand is if you enter something such as <code>ffmpeg -i gold.mp4 gold.avi</code> you get a resultant video that is of really low quality.  Perhaps this is just due to codec limitations and/or ffmpeg's automatic guessing, I'm really not sure.</p>
<h2>Trimming</h2>
<p>ffmpeg can be really useful if you have a video and just want a section of that video.  In that case, type:
<p>
<code>ffmpeg -ss 00:00:10 -i gold.mp4 -t 00:03:33 -acodec copy -vcodec copy gold_trimmed.mp4</code></p>
<p>This line will take the input file gold.mp4, start ten secods in and capture a total of three minutes and thirty-three seconds, then output to gold_trimmed.mp4 using the exact same audio and video codec settings as the source.  Note that the input file extension is the same as the output, and the <code>-ss</code> parameter comes before the <code>-i</code> and the <code>-t</code> come after the <code>-i</code> (I'm not sure why that order must be obeyed, but if you mix things up the results are off).  Make sure that <code>-acodec copy</code> and <code>-vcodec copy</code> are specified, else you get a lower quality result (maybe just because of encoder defaults).<br />
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2012/guide/ffmpeg/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Language, by Stephen Fry</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/language-by-stephen-fry</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/language-by-stephen-fry#comments</comments>
		<pubDate>Tue, 30 Nov 2010 22:04:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[language]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=194</guid>
		<description><![CDATA[The second in my language related series of found videos. This one is purely about making a point, but I also really like how Matthew Rogers arranged it. Good words and excellence of design. Stephen Fry Kinetic Typography &#8211; Language from Matthew Rogers on Vimeo.]]></description>
			<content:encoded><![CDATA[<p>The second in my language related series of found videos.  This one is purely about making a point, but I also really like how Matthew Rogers arranged it.  Good words and excellence of design.</p>
<p>
<object width="480" height="270"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=15412319&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=15412319&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="480" height="270"></embed></object>
<p><a href="http://vimeo.com/15412319">Stephen Fry Kinetic Typography &#8211; Language</a> from <a href="http://vimeo.com/user4639179">Matthew Rogers</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/language-by-stephen-fry/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninja Say What?!</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/ninja-say-what</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/ninja-say-what#comments</comments>
		<pubDate>Tue, 30 Nov 2010 21:56:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Stereotypes]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=189</guid>
		<description><![CDATA[Today I am in a language related mood. Here&#8217;s the first of two videos I find entertaining and, if you&#8217;re in the mood, it may produce some discussion.]]></description>
			<content:encoded><![CDATA[<p>Today I am in a language related mood.  Here&#8217;s the first of two videos I find entertaining and, if you&#8217;re in the mood, it may produce some discussion.</p>
<p>
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/5Ns-kXeQCMk?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5Ns-kXeQCMk?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/ninja-say-what/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domestic Transformer</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/domestic-transformer</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/domestic-transformer#comments</comments>
		<pubDate>Mon, 19 Jul 2010 21:03:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[Hong Kong]]></category>
		<category><![CDATA[Interior Design]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=172</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/Lg9qnWg9kak&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Lg9qnWg9kak&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/domestic-transformer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maestro Hughes</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/maestro-hughes</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/maestro-hughes#comments</comments>
		<pubDate>Thu, 24 Jun 2010 04:27:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=170</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/VbFopIYAatA&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/VbFopIYAatA&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/maestro-hughes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The History of Hip-Hop</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/the-history-of-hip-hop</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/the-history-of-hip-hop#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:05:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=111</guid>
		<description><![CDATA[I was shown this by one of my friends.]]></description>
			<content:encoded><![CDATA[<p>I was shown this by one of my friends.</p>
<p><object width="425" height="260"><param name="movie" value="http://www.youtube.com/v/6t28COxEp2k&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6t28COxEp2k&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="260"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/the-history-of-hip-hop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Breakaway, FRC 2010</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/breakaway-frc-2010</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/breakaway-frc-2010#comments</comments>
		<pubDate>Sat, 06 Feb 2010 08:26:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[frc]]></category>
		<category><![CDATA[robot]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=67</guid>
		<description><![CDATA[Here is the video for this year&#8217;s game. FRC is a competition where teams across the nation make a robot and compete against other teams in the &#8220;game&#8221; for that year (the game changes every year). The beginning half is a teaser, then comes the game animation, and then an FAQ. This is what I [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the video for this year&#8217;s game.  FRC is a competition where teams across the nation make a robot and compete against other teams in the &#8220;game&#8221; for that year (the game changes every year).  The beginning half is a teaser, then comes the game animation, and then an FAQ.  This is what I get to mentor.</p>
<p>[flowplayer src=http://www.worldwidewilly.immortalkeep.com/video/frckickoff.flv]<br />
<a href="/video/frckickoff.mp4">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/breakaway-frc-2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.worldwidewilly.immortalkeep.com/video/frckickoff.mp4" length="64695587" type="video/mp4" />
		</item>
		<item>
		<title>Comedian Trailer</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/comedian-trailer</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/comedian-trailer#comments</comments>
		<pubDate>Tue, 19 Jan 2010 05:40:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[Movie Trailer]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=63</guid>
		<description><![CDATA[Until I get time to edit down the video on the FIRST Robotics Game, here is something to pass the time. This is a trailer for Jerry Seinfeld&#8217;s film Comedian.]]></description>
			<content:encoded><![CDATA[<p>Until I get time to edit down the video on the FIRST Robotics Game, here is something to pass the time.  This is a trailer for Jerry Seinfeld&#8217;s film Comedian.  </p>
<p><object width="425" height="260"><param name="movie" value="http://www.youtube.com/v/fVDzuT0fXro&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/fVDzuT0fXro&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="260"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2010/video/comedian-trailer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To set the tone&#8230;</title>
		<link>http://worldwidewilly.immortalkeep.com/thoughts/2009/video/to-set-the-tone</link>
		<comments>http://worldwidewilly.immortalkeep.com/thoughts/2009/video/to-set-the-tone#comments</comments>
		<pubDate>Tue, 10 Nov 2009 07:02:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[creative]]></category>

		<guid isPermaLink="false">http://worldwidewilly.immortalkeep.com/thoughts/?p=3</guid>
		<description><![CDATA[I would like this blog to be a breeding ground for good ideas and conversation. Towards that end this video seems like a fitting start, here&#8217;s to creatives: CreaticeJuices.org.uk]]></description>
			<content:encoded><![CDATA[<p>I would like this blog to be a breeding ground for good ideas and conversation.  Towards that end this video seems like a fitting start, here&#8217;s to creatives: </p>
<p><object width="425" height="260" ><param name="movie" value="http://www.youtube.com/v/hgYwTELj-fs&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed  src="http://www.youtube.com/v/hgYwTELj-fs&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="260"></embed></object><br />
<a href="http://www.creativejuices.org.uk/">CreaticeJuices.org.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://worldwidewilly.immortalkeep.com/thoughts/2009/video/to-set-the-tone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

