<?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: mkvdts2ac3 1.0.0 released!</title>
	<atom:link href="http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/</link>
	<description>Programming, Freelance Web Design, etc.</description>
	<lastBuildDate>Tue, 20 Jul 2010 14:16:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 454</title>
		<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/comment-page-1/#comment-105</link>
		<dc:creator>454</dc:creator>
		<pubDate>Mon, 05 Oct 2009 23:06:12 +0000</pubDate>
		<guid isPermaLink="false">http://jakewharton.com/?p=309#comment-105</guid>
		<description>Thanks for the DTS to AC3 conversion. My PCH is happy again.</description>
		<content:encoded><![CDATA[<p>Thanks for the DTS to AC3 conversion. My PCH is happy again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohel</title>
		<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/comment-page-1/#comment-81</link>
		<dc:creator>Sohel</dc:creator>
		<pubDate>Thu, 20 Aug 2009 18:57:46 +0000</pubDate>
		<guid isPermaLink="false">http://jakewharton.com/?p=309#comment-81</guid>
		<description>Yes, works perfectly. Just had to make a minor change to the command:

find /path/to/mainFolder -name *\\.mkv -exec ./mkvdts2ac3.sh -d &#039;{}&#039; \;
                                                                                       ^</description>
		<content:encoded><![CDATA[<p>Yes, works perfectly. Just had to make a minor change to the command:</p>
<p>find /path/to/mainFolder -name *\\.mkv -exec ./mkvdts2ac3.sh -d &#8216;{}&#8217; \;<br />
                                                                                       ^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Wharton</title>
		<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/comment-page-1/#comment-80</link>
		<dc:creator>Jake Wharton</dc:creator>
		<pubDate>Thu, 20 Aug 2009 13:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://jakewharton.com/?p=309#comment-80</guid>
		<description>You can add flags immediately after the script name just as you would if you were running it directly.

&lt;code&gt;find /path/to/mainFolder -name *\\.mkv -exec mkvdts2ac3.sh -d &#039;{}&#039; \;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You can add flags immediately after the script name just as you would if you were running it directly.</p>
<p><code>find /path/to/mainFolder -name *\\.mkv -exec mkvdts2ac3.sh -d '{}' \;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohel</title>
		<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/comment-page-1/#comment-79</link>
		<dc:creator>Sohel</dc:creator>
		<pubDate>Thu, 20 Aug 2009 08:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://jakewharton.com/?p=309#comment-79</guid>
		<description>Thanks!

Also, what change do I have to make to this command if I want to use the -d option (to set the new AC3 track as default)?</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>Also, what change do I have to make to this command if I want to use the -d option (to set the new AC3 track as default)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake Wharton</title>
		<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/comment-page-1/#comment-78</link>
		<dc:creator>Jake Wharton</dc:creator>
		<pubDate>Thu, 20 Aug 2009 04:04:07 +0000</pubDate>
		<guid isPermaLink="false">http://jakewharton.com/?p=309#comment-78</guid>
		<description>This is a good question and is something that I have had to do more than once. While support for multiple input files might be added in the future, the following command should be sufficient for now:

&lt;code&gt;find /path/to/mainFolder -name *\\.mkv -exec mkvdts2ac3.sh &#039;{}&#039; \;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>This is a good question and is something that I have had to do more than once. While support for multiple input files might be added in the future, the following command should be sufficient for now:</p>
<p><code>find /path/to/mainFolder -name *\\.mkv -exec mkvdts2ac3.sh '{}' \;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohel</title>
		<link>http://jakewharton.com/2009/05/13/mkvdts2ac3-100-released/comment-page-1/#comment-77</link>
		<dc:creator>Sohel</dc:creator>
		<pubDate>Tue, 18 Aug 2009 10:23:39 +0000</pubDate>
		<guid isPermaLink="false">http://jakewharton.com/?p=309#comment-77</guid>
		<description>How can I use this on all my .mkv files with a single command (they are all in the same folder)? If I do this:

./mkvdts2ac3.sh /mainFolder/*.mkv

I get this error - &quot;ERROR: You cannot supply any arguments after the filename. Please check the command syntax below against what has been parsed.&quot;</description>
		<content:encoded><![CDATA[<p>How can I use this on all my .mkv files with a single command (they are all in the same folder)? If I do this:</p>
<p>./mkvdts2ac3.sh /mainFolder/*.mkv</p>
<p>I get this error &#8211; &#8220;ERROR: You cannot supply any arguments after the filename. Please check the command syntax below against what has been parsed.&#8221;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
