<?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 for Robot Goblin</title>
	<atom:link href="http://www.robotgoblin.co.uk/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robotgoblin.co.uk/blog</link>
	<description>Programming, Gaming and Computing</description>
	<lastBuildDate>Wed, 24 Apr 2013 12:20:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Managing Multiple SSH Keys by David Weinraub</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/07/24/managing-multiple-ssh-keys/#comment-11577</link>
		<dc:creator>David Weinraub</dc:creator>
		<pubDate>Wed, 24 Apr 2013 12:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=568#comment-11577</guid>
		<description><![CDATA[Thanks, this is exactly what I have been looking for for managing my keys.]]></description>
		<content:encoded><![CDATA[<p>Thanks, this is exactly what I have been looking for for managing my keys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Managing Multiple SSH Keys by Multiple ssh configs &#124; Bits n Bytes</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/07/24/managing-multiple-ssh-keys/#comment-11158</link>
		<dc:creator>Multiple ssh configs &#124; Bits n Bytes</dc:creator>
		<pubDate>Fri, 19 Apr 2013 18:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=568#comment-11158</guid>
		<description><![CDATA[[...] http://www.robotgoblin.co.uk/blog/2012/07/24/managing-multiple-ssh-keys/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.robotgoblin.co.uk/blog/2012/07/24/managing-multiple-ssh-keys/" rel="nofollow">http://www.robotgoblin.co.uk/blog/2012/07/24/managing-multiple-ssh-keys/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Managing Multiple SSH Keys by Jim</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/07/24/managing-multiple-ssh-keys/#comment-6953</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Tue, 19 Mar 2013 05:32:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=568#comment-6953</guid>
		<description><![CDATA[You need to

chmod 700 .ssh

Before it will work]]></description>
		<content:encoded><![CDATA[<p>You need to</p>
<p>chmod 700 .ssh</p>
<p>Before it will work</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting Videos for iPod Using FFmpeg by Joe</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/05/26/converting-videos-for-ipod-using-ffmpeg/#comment-143</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 31 May 2012 11:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=599#comment-143</guid>
		<description><![CDATA[Thanks, I&#039;ll give that a read.

Admittedly I&#039;m not very experienced using bash, I just throw together whatever seems to work!]]></description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;ll give that a read.</p>
<p>Admittedly I&#8217;m not very experienced using bash, I just throw together whatever seems to work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting Videos for iPod Using FFmpeg by Allen Halsey</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/05/26/converting-videos-for-ipod-using-ffmpeg/#comment-141</link>
		<dc:creator>Allen Halsey</dc:creator>
		<pubDate>Wed, 30 May 2012 22:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=599#comment-141</guid>
		<description><![CDATA[Thanks for the tip.

Suggestion for your script: use filename expansion put double quotes around the variable expansion:

&lt;pre lang=&quot;bash&quot; line=&quot;&quot; highlight=&quot;true&quot;&gt;
for f in *.avi; do
	echo &quot;Converting $f&quot;
	ffmpeg -i &quot;$f&quot; -acodec aac -vcodec mpeg4 -s 320x180 -strict experimental &quot;output/${f:0:${#f}-3}mp4&quot;
done
&lt;/pre&gt;

See: &lt;a href=&quot;http://mywiki.wooledge.org/BashPitfalls#for_i_in_.24.28ls_.2A.mp3.29&quot; rel=&quot;nofollow&quot;&gt;Bash Pitfalls #1: for i in $(ls *.mp3)&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tip.</p>
<p>Suggestion for your script: use filename expansion put double quotes around the variable expansion:</p>
<pre lang="bash" line="" highlight="true">
for f in *.avi; do
	echo "Converting $f"
	ffmpeg -i "$f" -acodec aac -vcodec mpeg4 -s 320x180 -strict experimental "output/${f:0:${#f}-3}mp4"
done
</pre>
<p>See: <a href="http://mywiki.wooledge.org/BashPitfalls#for_i_in_.24.28ls_.2A.mp3.29" rel="nofollow">Bash Pitfalls #1: for i in $(ls *.mp3)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting Videos for iPod Using FFmpeg by Joe</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/05/26/converting-videos-for-ipod-using-ffmpeg/#comment-139</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Mon, 28 May 2012 10:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=599#comment-139</guid>
		<description><![CDATA[Thanks for the tip!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tip!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting Videos for iPod Using FFmpeg by Gigi</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/05/26/converting-videos-for-ipod-using-ffmpeg/#comment-137</link>
		<dc:creator>Gigi</dc:creator>
		<pubDate>Sun, 27 May 2012 23:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=599#comment-137</guid>
		<description><![CDATA[With the latest generation ipod/iphones with their high resolution &quot;retina&quot; display, use -s 640x360 as the video ouput size for better resolution (assuming the source is equal if not larger).

There are (optional) presets for ipod video conversion that come with ffmpeg. Look under /usr/share/ffmpeg/ and if found, you can add -vpre=]]></description>
		<content:encoded><![CDATA[<p>With the latest generation ipod/iphones with their high resolution &#8220;retina&#8221; display, use -s 640&#215;360 as the video ouput size for better resolution (assuming the source is equal if not larger).</p>
<p>There are (optional) presets for ipod video conversion that come with ffmpeg. Look under /usr/share/ffmpeg/ and if found, you can add -vpre=</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting Videos for iPod Using FFmpeg by Joe</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/05/26/converting-videos-for-ipod-using-ffmpeg/#comment-136</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 26 May 2012 23:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=599#comment-136</guid>
		<description><![CDATA[When using the &lt;code&gt;aac&lt;/code&gt; audio codec, it is yes, because &lt;b&gt;&quot;encoder &#039;aac&#039; is experimental and might produce bad results.&quot;&lt;/b&gt;

If you omit the option, FFmpeg will give you a little message saying this, with the following suggestion: &lt;b&gt;Add &#039;-strict experimental&#039; if you want to use it.&lt;/b&gt;]]></description>
		<content:encoded><![CDATA[<p>When using the <code>aac</code> audio codec, it is yes, because <b>&#8220;encoder &#8216;aac&#8217; is experimental and might produce bad results.&#8221;</b></p>
<p>If you omit the option, FFmpeg will give you a little message saying this, with the following suggestion: <b>Add &#8216;-strict experimental&#8217; if you want to use it.</b></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Converting Videos for iPod Using FFmpeg by Dragnucs</title>
		<link>http://www.robotgoblin.co.uk/blog/2012/05/26/converting-videos-for-ipod-using-ffmpeg/#comment-134</link>
		<dc:creator>Dragnucs</dc:creator>
		<pubDate>Sat, 26 May 2012 11:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=599#comment-134</guid>
		<description><![CDATA[Is the -strict option obligatory?]]></description>
		<content:encoded><![CDATA[<p>Is the -strict option obligatory?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Good Old-Fashioned Gaming by Stone Soup on Fedora &#187; Robot Goblin</title>
		<link>http://www.robotgoblin.co.uk/blog/2011/07/16/good-old-fashioned-gaming/#comment-129</link>
		<dc:creator>Stone Soup on Fedora &#187; Robot Goblin</dc:creator>
		<pubDate>Fri, 04 May 2012 23:24:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.robotgoblin.co.uk/blog/?p=206#comment-129</guid>
		<description><![CDATA[[...] by Joe      I&#8217;ve already written about Dungeon Crawl: Stone Soup here: http://www.robotgoblin.co.uk/blog/2011/07/16/good-old-fashioned-gaming/. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] by Joe      I&#8217;ve already written about Dungeon Crawl: Stone Soup here: <a href="http://www.robotgoblin.co.uk/blog/2011/07/16/good-old-fashioned-gaming/" rel="nofollow">http://www.robotgoblin.co.uk/blog/2011/07/16/good-old-fashioned-gaming/</a>. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
