<?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: Concatenate Quicktime Movies</title>
	<atom:link href="http://automatorworld.com/archives/concatenate-quicktime-movies/feed/" rel="self" type="application/rss+xml" />
	<link>http://automatorworld.com/archives/concatenate-quicktime-movies/</link>
	<description>Better Living Through Macintosh Scripting</description>
	<lastBuildDate>Sat, 05 Sep 2009 13:02:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Michael</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-182133</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 21 Aug 2009 13:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-182133</guid>
		<description>&lt;p&gt;watching the process is one of those Mac &#039;Wow!&#039; moments. THANKS.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>watching the process is one of those Mac &#8216;Wow!&#8217; moments. THANKS.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: phase</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-173649</link>
		<dc:creator>phase</dc:creator>
		<pubDate>Sat, 28 Feb 2009 00:44:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-173649</guid>
		<description>&lt;p&gt;Many thanks for this!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Many thanks for this!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Frenchie</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-170775</link>
		<dc:creator>Frenchie</dc:creator>
		<pubDate>Sun, 25 Jan 2009 10:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-170775</guid>
		<description>&lt;p&gt;Thank for this automator script.&lt;/p&gt;

&lt;p&gt;I downloaded it, I made the change (movies to documents), and works fine. For beginners to Automator, just click on the &quot;QuickTime Pro Concatenate Movies&quot; file, it opens Automator, click on the PLay button on the top right hand corner.. and go. &lt;/p&gt;

&lt;p&gt;Note that the (movies =&gt; documents) change must also been done at the step #2 (Quicktime opening), and at the step #7 (5th line).&lt;/p&gt;

&lt;p&gt;As for me, the last problem is that : each time you add a new file, the popup finder window BEGINS at Desktop... How can it start in the same folder I just used before ?&lt;/p&gt;

&lt;p&gt;Thanks for any clue.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank for this automator script.</p>

<p>I downloaded it, I made the change (movies to documents), and works fine. For beginners to Automator, just click on the &#8220;QuickTime Pro Concatenate Movies&#8221; file, it opens Automator, click on the PLay button on the top right hand corner.. and go. </p>

<p>Note that the (movies =&gt; documents) change must also been done at the step #2 (Quicktime opening), and at the step #7 (5th line).</p>

<p>As for me, the last problem is that : each time you add a new file, the popup finder window BEGINS at Desktop&#8230; How can it start in the same folder I just used before ?</p>

<p>Thanks for any clue.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Peter</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-116083</link>
		<dc:creator>Peter</dc:creator>
		<pubDate>Sat, 16 Feb 2008 18:22:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-116083</guid>
		<description>&lt;p&gt;&quot;“The variable &#124;movies&#124; is not defined. (-2753)”&quot;&lt;/p&gt;

&lt;p&gt;This is actually pretty simple to fix, but it took me a bit to track it down -- basically, &lt;i&gt;movies&lt;/i&gt; looks like it used to be an applescript object (probably an array) that contained currently open movies, so it was basically copying the contents of that into another variable. &lt;/p&gt;

&lt;p&gt;There&#039;s now a variable in Leopard Automator &lt;i&gt;Movies&lt;/i&gt; which contains the path to the current user&#039;s Movies subdirectory, which may be why it was deprecated.  &lt;/p&gt;

&lt;p&gt;Anyway, changing the line &lt;/p&gt;

&lt;p&gt;&lt;code&gt;set openedMovies to count movies&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;to &lt;/p&gt;

&lt;p&gt;&lt;code&gt;set openedMovies to count documents&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;seems to have fixed it for me. I also removed the step that filters out all files except .mov, since I figure I&#039;ll generally  know not to open word documents with this, and I might need to concatenate non-.mov video files.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8220;“The variable |movies| is not defined. (-2753)”&#8221;</p>

<p>This is actually pretty simple to fix, but it took me a bit to track it down &#8212; basically, <i>movies</i> looks like it used to be an applescript object (probably an array) that contained currently open movies, so it was basically copying the contents of that into another variable. </p>

<p>There&#8217;s now a variable in Leopard Automator <i>Movies</i> which contains the path to the current user&#8217;s Movies subdirectory, which may be why it was deprecated.  </p>

<p>Anyway, changing the line </p>

<p><code>set openedMovies to count movies</code></p>

<p>to </p>

<p><code>set openedMovies to count documents</code></p>

<p>seems to have fixed it for me. I also removed the step that filters out all files except .mov, since I figure I&#8217;ll generally  know not to open word documents with this, and I might need to concatenate non-.mov video files.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-113394</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 29 Jan 2008 08:08:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-113394</guid>
		<description>&lt;p&gt;This looks great.  I continually get this error:  Any ideas?&lt;/p&gt;

&lt;p&gt;&quot;The variable &#124;movies&#124; is not defined. (-2753)&quot;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This looks great.  I continually get this error:  Any ideas?</p>

<p>&#8220;The variable |movies| is not defined. (-2753)&#8221;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: AdÃ©lard</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-1847</link>
		<dc:creator>AdÃ©lard</dc:creator>
		<pubDate>Thu, 02 Feb 2006 03:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-1847</guid>
		<description>&lt;p&gt;Ooops! Sorry! I guess I&#039;ll have to try to make a script that converts all my movies to .mov!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ooops! Sorry! I guess I&#8217;ll have to try to make a script that converts all my movies to .mov!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: AdÃ©lard</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-1846</link>
		<dc:creator>AdÃ©lard</dc:creator>
		<pubDate>Thu, 02 Feb 2006 03:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-1846</guid>
		<description>&lt;p&gt;NSReceuiverEvaluationScriptError: 4 (1)  ?&lt;/p&gt;

&lt;p&gt;It was my first time using Automator and I got this error.
What goes?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>NSReceuiverEvaluationScriptError: 4 (1)  ?</p>

<p>It was my first time using Automator and I got this error.
What goes?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: GÃ¡bor</title>
		<link>http://automatorworld.com/archives/concatenate-quicktime-movies/comment-page-1/#comment-1812</link>
		<dc:creator>GÃ¡bor</dc:creator>
		<pubDate>Sat, 28 Jan 2006 07:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.automatorworld.com/?p=229#comment-1812</guid>
		<description>&lt;p&gt;Thanks, Michael!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks, Michael!</p>]]></content:encoded>
	</item>
</channel>
</rss>
