<?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: Automating QuickTime at the Command Line on Windows&#8230;</title>
	<atom:link href="http://www.softimageblog.com/archives/103/feed" rel="self" type="application/rss+xml" />
	<link>http://www.softimageblog.com/archives/103</link>
	<description>People and thoughts behind Softimage in production...</description>
	<lastBuildDate>Sat, 04 Feb 2012 05:37:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Lionel</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17656</link>
		<dc:creator>Lionel</dc:creator>
		<pubDate>Thu, 10 Mar 2011 15:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17656</guid>
		<description>When i export, i can not save the codec info to an XML file because QTExporter.Settings is NULL, so i can not access QTExporter.Settings.XML.
Besides this, the export will work only if i open the dialog box, otherwise BeginExport() does nothing.
The code i have is similar to the one posted in the article:

// language: C#

// qt_control is the AxQTControl embedded in the Form
qt_control.URL = &quot;D:\\source_file.mp4&quot;;
QTQuickTime qt = qt_control.QuickTime;

            if (qt.Exporters.Count == 0)
                qt.Exporters.Add();

            QTExporter qtexporter = qt.Exporters[1];
            qtexporter.SetDataSource(qt_control.Movie);
            qtexporter.TypeName = &quot;QuickTime Movie&quot;;
            qtexporter.ShowProgressDialog = true;
            qtexporter.DestinationFileName = &quot;D:\\output.mov&quot;;

           // if i comment the following line the export won&#039;t begin ( BeginExport() will do nothing )
            qtexporter.ShowExportDialog();
            
            qtexporter.BeginExport();
            
            StreamWriter sw = File.CreateText(&quot;exporter_settings.xml&quot;);
// this will raise an exception because qtexporter.Settings is null
            sw.Write(qtexporter.Settings.XML);
            sw.Close();
             
What have i mistaken? I&#039;ve compiled the program with VisualStudio 2010 on Windows XP, and i have QuickTime 7 installed but not the Pro version.
Maybe i need the Pro?
Any hint is appreciated

p.s.
i&#039;ve even tried doing
qtexporter.ShowSettingsDialog();
but the dialog does not show!</description>
		<content:encoded><![CDATA[<p>When i export, i can not save the codec info to an XML file because QTExporter.Settings is NULL, so i can not access QTExporter.Settings.XML.<br />
Besides this, the export will work only if i open the dialog box, otherwise BeginExport() does nothing.<br />
The code i have is similar to the one posted in the article:</p>
<p>// language: C#</p>
<p>// qt_control is the AxQTControl embedded in the Form<br />
qt_control.URL = &#8220;D:\\source_file.mp4&#8243;;<br />
QTQuickTime qt = qt_control.QuickTime;</p>
<p>            if (qt.Exporters.Count == 0)<br />
                qt.Exporters.Add();</p>
<p>            QTExporter qtexporter = qt.Exporters[1];<br />
            qtexporter.SetDataSource(qt_control.Movie);<br />
            qtexporter.TypeName = &#8220;QuickTime Movie&#8221;;<br />
            qtexporter.ShowProgressDialog = true;<br />
            qtexporter.DestinationFileName = &#8220;D:\\output.mov&#8221;;</p>
<p>           // if i comment the following line the export won&#8217;t begin ( BeginExport() will do nothing )<br />
            qtexporter.ShowExportDialog();</p>
<p>            qtexporter.BeginExport();</p>
<p>            StreamWriter sw = File.CreateText(&#8220;exporter_settings.xml&#8221;);<br />
// this will raise an exception because qtexporter.Settings is null<br />
            sw.Write(qtexporter.Settings.XML);<br />
            sw.Close();</p>
<p>What have i mistaken? I&#8217;ve compiled the program with VisualStudio 2010 on Windows XP, and i have QuickTime 7 installed but not the Pro version.<br />
Maybe i need the Pro?<br />
Any hint is appreciated</p>
<p>p.s.<br />
i&#8217;ve even tried doing<br />
qtexporter.ShowSettingsDialog();<br />
but the dialog does not show!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17566</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 29 Jun 2010 00:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17566</guid>
		<description>Thats a great little solution and here I was about to write a small command line app. Nice work. 

Cheers, 
Dave</description>
		<content:encoded><![CDATA[<p>Thats a great little solution and here I was about to write a small command line app. Nice work. </p>
<p>Cheers,<br />
Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17533</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Tue, 27 Apr 2010 20:23:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17533</guid>
		<description>I am trying to add a track on a video using WSH script, and i get the track to be added, however, I want it to be in blend mode, but I can&#039;t figure out how to do it. I have the QuickTime For .Net and COM Developers book, but the example he has does it using qtTransferModeStraightAlphaBlend, then sets an OperationsColor. This is not what I am looking for. What I need it to do is a 50% Blend (like if you go to the Visual Settings for a track and select Blend from the pulldown menu). Can anyone help me here?</description>
		<content:encoded><![CDATA[<p>I am trying to add a track on a video using WSH script, and i get the track to be added, however, I want it to be in blend mode, but I can&#8217;t figure out how to do it. I have the QuickTime For .Net and COM Developers book, but the example he has does it using qtTransferModeStraightAlphaBlend, then sets an OperationsColor. This is not what I am looking for. What I need it to do is a 50% Blend (like if you go to the Visual Settings for a track and select Blend from the pulldown menu). Can anyone help me here?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip Chapin</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17446</link>
		<dc:creator>Chip Chapin</dc:creator>
		<pubDate>Mon, 01 Feb 2010 18:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17446</guid>
		<description>I have now rewritten the script in Python and combined it with some other automation.

http://cchapin.blogspot.com/2010/02/seqtoqt-python-conversion-of-still.html</description>
		<content:encoded><![CDATA[<p>I have now rewritten the script in Python and combined it with some other automation.</p>
<p><a href="http://cchapin.blogspot.com/2010/02/seqtoqt-python-conversion-of-still.html" rel="nofollow">http://cchapin.blogspot.com/2010/02/seqtoqt-python-conversion-of-still.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip Chapin</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17440</link>
		<dc:creator>Chip Chapin</dc:creator>
		<pubDate>Sun, 31 Jan 2010 03:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17440</guid>
		<description>I&#039;ve posted an adaptation of Luc-Eric&#039;s script in my blog here http://cchapin.blogspot.com/2010/01/scripting-conversion-of-image-sequences.html

The changes are not great but there is somewhat more error handling (still problematic) and it works when called repeatedly from another script.  The posting also includes a lot of references.

Thanks again for putting this up.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve posted an adaptation of Luc-Eric&#8217;s script in my blog here <a href="http://cchapin.blogspot.com/2010/01/scripting-conversion-of-image-sequences.html" rel="nofollow">http://cchapin.blogspot.com/2010/01/scripting-conversion-of-image-sequences.html</a></p>
<p>The changes are not great but there is somewhat more error handling (still problematic) and it works when called repeatedly from another script.  The posting also includes a lot of references.</p>
<p>Thanks again for putting this up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anmol Mishra</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17439</link>
		<dc:creator>Anmol Mishra</dc:creator>
		<pubDate>Fri, 29 Jan 2010 03:21:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17439</guid>
		<description>Anyone volunteer to make a script that will take n .mov files and cat them to a single .mov file :-) 
There is mp4box that does this for mp4 files but nothing yet for files in a .mov container..</description>
		<content:encoded><![CDATA[<p>Anyone volunteer to make a script that will take n .mov files and cat them to a single .mov file :-)<br />
There is mp4box that does this for mp4 files but nothing yet for files in a .mov container..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip Chapin</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17438</link>
		<dc:creator>Chip Chapin</dc:creator>
		<pubDate>Thu, 28 Jan 2010 03:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17438</guid>
		<description>I was having trouble getting the script to work in most situations until I realized that I was using relative paths for the files.  If it&#039;s not working for you, be sure to fully specify the input and output, like &quot;d:\bletch\foo\xxx_0001.jpg&quot;, rather than cd&#039;ing into d:\bletch\foo and specifying the input as &quot;xxx_0001.jpg&quot;.  This solved the most perplexing issues.</description>
		<content:encoded><![CDATA[<p>I was having trouble getting the script to work in most situations until I realized that I was using relative paths for the files.  If it&#8217;s not working for you, be sure to fully specify the input and output, like &#8220;d:\bletch\foo\xxx_0001.jpg&#8221;, rather than cd&#8217;ing into d:\bletch\foo and specifying the input as &#8220;xxx_0001.jpg&#8221;.  This solved the most perplexing issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chip Chapin</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17437</link>
		<dc:creator>Chip Chapin</dc:creator>
		<pubDate>Tue, 26 Jan 2010 19:54:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17437</guid>
		<description>Outstanding, thank you!  I was searching for how to script QuickTime and came quickly to this post, only to find that you had already written precisely the script I needed to write: making a movie from an image sequence. 

I suppose we&#039;re all doing timelapse?</description>
		<content:encoded><![CDATA[<p>Outstanding, thank you!  I was searching for how to script QuickTime and came quickly to this post, only to find that you had already written precisely the script I needed to write: making a movie from an image sequence. </p>
<p>I suppose we&#8217;re all doing timelapse?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17412</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Fri, 30 Oct 2009 19:29:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17412</guid>
		<description>C:\Documents and Settings\jonasa&gt;cscript jsQTtest.js &quot;C:\Documents and Settings\
user\Desktop\Char-ANTHRO_04_v010_TEMP4c9a104c\playblastCam
00000.jpg&quot;, &quot;C:\Documents and Settings\user\Desktop\Char-ANTHRO_04_v010_TEMP4c9a104c_OUTPUT\Marston-ANTHRO_04_v010.mov&quot;

Output: photoJPG

XML: 





	Date
	Fri Oct 30 12:17:54 2009

	Format
	MooV
	Name
	QuickTime Movie
	SettingsData
	
	AAAAAAAAAAAAAAAAAAAKRXNlYW4AAAABAAAABQAAAAAAAAGvdmlkZQAAAAEAAAAQAAAA
	AAAAACJzcHRsAAAAAQAAAAAAAAAAanBlZwAAAAAAGAAAAv0AAAAgdHBybAAAAAEAAAAA
	AAAAAAAAAAAAAAAAAAAAAAAAACRkcmF0AAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
	AAAAABVtcHNvAAAAAQAAAAAAAAAAAAAAABhtZnJhAAAAAQAAAAAAAAAAAAAAAAAAABhw
	c2ZyAAAAAQAAAAAAAAAAAAAAAAAAABViZnJhAAAAAQAAAAAAAAAAAAAAABZtcGVzAAAA
	AQAAAAAAAAAAAAAAAAAoaGFyZAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
	AAAAFmVuZHMAAAABAAAAAAAAAAAAAAAAABZjZmxnAAAAAQAAAAAAAAAAAEQAAAAYY21m
	cgAAAAEAAAAAAAAAAGFwcGwAAAAUY2x1dAAAAAEAAAAAAAAAAAAAABRjZGVjAAAAAQAA
	AAAAAAAAAAAAHHZlcnMAAAABAAAAAAAAAAAAAwAcAAEAAAAAABV0cm5jAAAAAQAAAAAA
	AAAAAAAAAQZpc2l6AAAAAQAAAAkAAAAAAAAAGGl3ZHQAAAABAAAAAAAAAAAAAAAAAAAA
	GGloZ3QAAAABAAAAAAAAAAAAAAAAAAAAGHB3ZHQAAAABAAAAAAAAAAAAAAAAAAAAGHBo
	Z3QAAAABAAAAAAAAAAAAAAAAAAAANGNsYXAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA
	AAAAAAAAAAAAAAAAAAAAAAAAAAAAABxwYXNwAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAY
	c2NhbQAAAAEAAAAAAAAAAAAAAAAAAAAVZGludAAAAAEAAAAAAAAAAAAAAAAVdWVuZgAA
	AAEAAAAAAAAAAAEAAAcoc291bgAAAAEAAAAGAAAAAAAABpxhdWRpAAAAAQAAAAYAAAAA
	AAAAPG9zYmQAAAABAAAAAAAAAABA5YiAAAAAAGxwY20AAAAMAAAABAAAAAEAAAAEAAAA
	AgAAABAAAAAAAAAF42Nkc3QAAAABAAAAAAAAAAA8P3htbCB2ZXJzaW9uPSIxLjAiIGVu
	Y29kaW5nPSJVVEYtOCI/Pgo8IURPQ1RZUEUgcGxpc3QgUFVCTElDICItLy9BcHBsZS8v
	RFREIFBMSVNUIDEuMC8vRU4iICJodHRwOi8vd3d3LmFwcGxlLmNvbS9EVERzL1Byb3Bl
	cnR5TGlzdC0xLjAuZHRkIj4KPHBsaXN0IHZlcnNpb249IjEuMCI+CjxhcnJheT4KCTxk
	aWN0PgoJCTxrZXk+Y29udmVydGVyPC9rZXk+CgkJPHN0cmluZz5TYW1wbGVSYXRlQ29u
	dmVydGVyPC9zdHJpbmc+CgkJPGtleT5uYW1lPC9rZXk+CgkJPHN0cmluZz5TYW1wbGUg
	UmF0ZSBDb252ZXJ0ZXI8L3N0cmluZz4KCQk8a2V5PnBhcmFtZXRlcnM8L2tleT4KCQk8
	YXJyYXk+CgkJCTxkaWN0PgoJCQkJPGtleT5hdmFpbGFibGUgdmFsdWVzPC9rZXk+CgkJ
	CQk8YXJyYXk+CgkJCQkJPHN0cmluZz5GYXN0ZXI8L3N0cmluZz4KCQkJCQk8c3RyaW5n
	PkZhc3Q8L3N0cmluZz4KCQkJCQk8c3RyaW5nPk5vcm1hbDwvc3RyaW5nPgoJCQkJCTxz
	dHJpbmc+QmV0dGVyPC9zdHJpbmc+CgkJCQkJPHN0cmluZz5CZXN0PC9zdHJpbmc+CgkJ
	CQk8L2FycmF5PgoJCQkJPGtleT5jdXJyZW50IHZhbHVlPC9rZXk+CgkJCQk8aW50ZWdl
	cj4yPC9pbnRlZ2VyPgoJCQkJPGtleT5oaW50PC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9p
	bnRlZ2VyPgoJCQkJPGtleT5rZXk8L2tleT4KCQkJCTxzdHJpbmc+UXVhbGl0eTwvc3Ry
	aW5nPgoJCQkJPGtleT5uYW1lPC9rZXk+CgkJCQk8c3RyaW5nPlF1YWxpdHk8L3N0cmlu
	Zz4KCQkJCTxrZXk+c3VtbWFyeTwva2V5PgoJCQkJPHN0cmluZz5RdWFsaXR5IHNldHRp
	bmcgZm9yIHRoZSBzYW1wbGUgcmF0ZSBjb252ZXJ0ZXIuPC9zdHJpbmc+CgkJCQk8a2V5
	PnZhbHVlIHR5cGU8L2tleT4KCQkJCTxpbnRlZ2VyPjIyPC9pbnRlZ2VyPgoJCQk8L2Rp
	Y3Q+CgkJCTxkaWN0PgoJCQkJPGtleT5hdmFpbGFibGUgdmFsdWVzPC9rZXk+CgkJCQk8
	YXJyYXk+CgkJCQkJPHN0cmluZz5QcmU8L3N0cmluZz4KCQkJCQk8c3RyaW5nPk5vcm1h
	bDwvc3RyaW5nPgoJCQkJCTxzdHJpbmc+Tm9uZTwvc3RyaW5nPgoJCQkJPC9hcnJheT4K
	CQkJCTxrZXk+Y3VycmVudCB2YWx1ZTwva2V5PgoJCQkJPGludGVnZXI+MTwvaW50ZWdl
	cj4KCQkJCTxrZXk+aGludDwva2V5PgoJCQkJPGludGVnZXI+MjwvaW50ZWdlcj4KCQkJ
	CTxrZXk+a2V5PC9rZXk+CgkJCQk8c3RyaW5nPlByaW1pbmcgTWV0aG9kPC9zdHJpbmc+
	CgkJCQk8a2V5Pm5hbWU8L2tleT4KCQkJCTxzdHJpbmc+UHJpbWluZyBNZXRob2Q8L3N0
	cmluZz4KCQkJCTxrZXk+c3VtbWFyeTwva2V5PgoJCQkJPHN0cmluZz5QcmltaW5nIG1l
	dGhvZCBmb3IgdGhlIHNhbXBsZSByYXRlIGNvbnZlcnRlci48L3N0cmluZz4KCQkJCTxr
	ZXk+dmFsdWUgdHlwZTwva2V5PgoJCQkJPGludGVnZXI+MjI8L2ludGVnZXI+CgkJCTwv
	ZGljdD4KCQk8L2FycmF5PgoJCTxrZXk+dmVyc2lvbjwva2V5PgoJCTxpbnRlZ2VyPjA8
	L2ludGVnZXI+Cgk8L2RpY3Q+CjwvYXJyYXk+CjwvcGxpc3Q+CgAAACBjbGF5AAAAAQAA
	AAAAAAAAAGUAAgAAAAAAAAAAAAAAFXJlY28AAAABAAAAAAAAAAAAAAAAGHFsdHkAAAAB
	AAAAAAAAAAAAAABAAAAAHHZlcnMAAAABAAAAAAAAAAAAAwAVAAEAAAAAABhzc2N0AAAA
	AQAAAAAAAAAAc293dAAAABhzc3J0AAAAAQAAAAAAAAAArEQAAAAAABZzc3NzAAAAAQAA
	AAAAAAAAABAAAAAWc3NjYwAAAAEAAAAAAAAAAAACAAAAHHZlcnMAAAABAAAAAAAAAAAA
	AwAUAAEAAAAAABVlbnZpAAAAAQAAAAAAAAAAAQAAAD9zYXZlAAAAAQAAAAIAAAAAAAAA
	FWZhc3QAAAABAAAAAAAAAAAAAAAAFnNzdHkAAAABAAAAAAAAAAAAAQ==
	
	Type
	Movie



Result: Script exits without doing anything

Also: 

// Launch QuickTime Player Application
var qtPlayerApp = WScript.CreateObject(&quot;QuickTimePlayerLib.QuickTimePlayerApp&quot;);
WScript.Sleep(7000);
if (qtPlayerApp == null)    {
    WScript.Echo(&quot;Unable to launch QuickTime Player!&quot;);
    WScript.Quit();
}

I don&#039;t know if that is the correct syntax cause i&#039;m not a js scripter.

Help?</description>
		<content:encoded><![CDATA[<p>C:\Documents and Settings\jonasa&gt;cscript jsQTtest.js &#8220;C:\Documents and Settings\<br />
user\Desktop\Char-ANTHRO_04_v010_TEMP4c9a104c\playblastCam<br />
00000.jpg&#8221;, &#8220;C:\Documents and Settings\user\Desktop\Char-ANTHRO_04_v010_TEMP4c9a104c_OUTPUT\Marston-ANTHRO_04_v010.mov&#8221;</p>
<p>Output: photoJPG</p>
<p>XML: </p>
<p>	Date<br />
	Fri Oct 30 12:17:54 2009</p>
<p>	Format<br />
	MooV<br />
	Name<br />
	QuickTime Movie<br />
	SettingsData</p>
<p>	AAAAAAAAAAAAAAAAAAAKRXNlYW4AAAABAAAABQAAAAAAAAGvdmlkZQAAAAEAAAAQAAAA<br />
	AAAAACJzcHRsAAAAAQAAAAAAAAAAanBlZwAAAAAAGAAAAv0AAAAgdHBybAAAAAEAAAAA<br />
	AAAAAAAAAAAAAAAAAAAAAAAAACRkcmF0AAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA<br />
	AAAAABVtcHNvAAAAAQAAAAAAAAAAAAAAABhtZnJhAAAAAQAAAAAAAAAAAAAAAAAAABhw<br />
	c2ZyAAAAAQAAAAAAAAAAAAAAAAAAABViZnJhAAAAAQAAAAAAAAAAAAAAABZtcGVzAAAA<br />
	AQAAAAAAAAAAAAAAAAAoaGFyZAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA<br />
	AAAAFmVuZHMAAAABAAAAAAAAAAAAAAAAABZjZmxnAAAAAQAAAAAAAAAAAEQAAAAYY21m<br />
	cgAAAAEAAAAAAAAAAGFwcGwAAAAUY2x1dAAAAAEAAAAAAAAAAAAAABRjZGVjAAAAAQAA<br />
	AAAAAAAAAAAAHHZlcnMAAAABAAAAAAAAAAAAAwAcAAEAAAAAABV0cm5jAAAAAQAAAAAA<br />
	AAAAAAAAAQZpc2l6AAAAAQAAAAkAAAAAAAAAGGl3ZHQAAAABAAAAAAAAAAAAAAAAAAAA<br />
	GGloZ3QAAAABAAAAAAAAAAAAAAAAAAAAGHB3ZHQAAAABAAAAAAAAAAAAAAAAAAAAGHBo<br />
	Z3QAAAABAAAAAAAAAAAAAAAAAAAANGNsYXAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAA<br />
	AAAAAAAAAAAAAAAAAAAAAAAAAAAAABxwYXNwAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAY<br />
	c2NhbQAAAAEAAAAAAAAAAAAAAAAAAAAVZGludAAAAAEAAAAAAAAAAAAAAAAVdWVuZgAA<br />
	AAEAAAAAAAAAAAEAAAcoc291bgAAAAEAAAAGAAAAAAAABpxhdWRpAAAAAQAAAAYAAAAA<br />
	AAAAPG9zYmQAAAABAAAAAAAAAABA5YiAAAAAAGxwY20AAAAMAAAABAAAAAEAAAAEAAAA<br />
	AgAAABAAAAAAAAAF42Nkc3QAAAABAAAAAAAAAAA8P3htbCB2ZXJzaW9uPSIxLjAiIGVu<br />
	Y29kaW5nPSJVVEYtOCI/Pgo8IURPQ1RZUEUgcGxpc3QgUFVCTElDICItLy9BcHBsZS8v<br />
	RFREIFBMSVNUIDEuMC8vRU4iICJodHRwOi8vd3d3LmFwcGxlLmNvbS9EVERzL1Byb3Bl<br />
	cnR5TGlzdC0xLjAuZHRkIj4KPHBsaXN0IHZlcnNpb249IjEuMCI+CjxhcnJheT4KCTxk<br />
	aWN0PgoJCTxrZXk+Y29udmVydGVyPC9rZXk+CgkJPHN0cmluZz5TYW1wbGVSYXRlQ29u<br />
	dmVydGVyPC9zdHJpbmc+CgkJPGtleT5uYW1lPC9rZXk+CgkJPHN0cmluZz5TYW1wbGUg<br />
	UmF0ZSBDb252ZXJ0ZXI8L3N0cmluZz4KCQk8a2V5PnBhcmFtZXRlcnM8L2tleT4KCQk8<br />
	YXJyYXk+CgkJCTxkaWN0PgoJCQkJPGtleT5hdmFpbGFibGUgdmFsdWVzPC9rZXk+CgkJ<br />
	CQk8YXJyYXk+CgkJCQkJPHN0cmluZz5GYXN0ZXI8L3N0cmluZz4KCQkJCQk8c3RyaW5n<br />
	PkZhc3Q8L3N0cmluZz4KCQkJCQk8c3RyaW5nPk5vcm1hbDwvc3RyaW5nPgoJCQkJCTxz<br />
	dHJpbmc+QmV0dGVyPC9zdHJpbmc+CgkJCQkJPHN0cmluZz5CZXN0PC9zdHJpbmc+CgkJ<br />
	CQk8L2FycmF5PgoJCQkJPGtleT5jdXJyZW50IHZhbHVlPC9rZXk+CgkJCQk8aW50ZWdl<br />
	cj4yPC9pbnRlZ2VyPgoJCQkJPGtleT5oaW50PC9rZXk+CgkJCQk8aW50ZWdlcj4wPC9p<br />
	bnRlZ2VyPgoJCQkJPGtleT5rZXk8L2tleT4KCQkJCTxzdHJpbmc+UXVhbGl0eTwvc3Ry<br />
	aW5nPgoJCQkJPGtleT5uYW1lPC9rZXk+CgkJCQk8c3RyaW5nPlF1YWxpdHk8L3N0cmlu<br />
	Zz4KCQkJCTxrZXk+c3VtbWFyeTwva2V5PgoJCQkJPHN0cmluZz5RdWFsaXR5IHNldHRp<br />
	bmcgZm9yIHRoZSBzYW1wbGUgcmF0ZSBjb252ZXJ0ZXIuPC9zdHJpbmc+CgkJCQk8a2V5<br />
	PnZhbHVlIHR5cGU8L2tleT4KCQkJCTxpbnRlZ2VyPjIyPC9pbnRlZ2VyPgoJCQk8L2Rp<br />
	Y3Q+CgkJCTxkaWN0PgoJCQkJPGtleT5hdmFpbGFibGUgdmFsdWVzPC9rZXk+CgkJCQk8<br />
	YXJyYXk+CgkJCQkJPHN0cmluZz5QcmU8L3N0cmluZz4KCQkJCQk8c3RyaW5nPk5vcm1h<br />
	bDwvc3RyaW5nPgoJCQkJCTxzdHJpbmc+Tm9uZTwvc3RyaW5nPgoJCQkJPC9hcnJheT4K<br />
	CQkJCTxrZXk+Y3VycmVudCB2YWx1ZTwva2V5PgoJCQkJPGludGVnZXI+MTwvaW50ZWdl<br />
	cj4KCQkJCTxrZXk+aGludDwva2V5PgoJCQkJPGludGVnZXI+MjwvaW50ZWdlcj4KCQkJ<br />
	CTxrZXk+a2V5PC9rZXk+CgkJCQk8c3RyaW5nPlByaW1pbmcgTWV0aG9kPC9zdHJpbmc+<br />
	CgkJCQk8a2V5Pm5hbWU8L2tleT4KCQkJCTxzdHJpbmc+UHJpbWluZyBNZXRob2Q8L3N0<br />
	cmluZz4KCQkJCTxrZXk+c3VtbWFyeTwva2V5PgoJCQkJPHN0cmluZz5QcmltaW5nIG1l<br />
	dGhvZCBmb3IgdGhlIHNhbXBsZSByYXRlIGNvbnZlcnRlci48L3N0cmluZz4KCQkJCTxr<br />
	ZXk+dmFsdWUgdHlwZTwva2V5PgoJCQkJPGludGVnZXI+MjI8L2ludGVnZXI+CgkJCTwv<br />
	ZGljdD4KCQk8L2FycmF5PgoJCTxrZXk+dmVyc2lvbjwva2V5PgoJCTxpbnRlZ2VyPjA8<br />
	L2ludGVnZXI+Cgk8L2RpY3Q+CjwvYXJyYXk+CjwvcGxpc3Q+CgAAACBjbGF5AAAAAQAA<br />
	AAAAAAAAAGUAAgAAAAAAAAAAAAAAFXJlY28AAAABAAAAAAAAAAAAAAAAGHFsdHkAAAAB<br />
	AAAAAAAAAAAAAABAAAAAHHZlcnMAAAABAAAAAAAAAAAAAwAVAAEAAAAAABhzc2N0AAAA<br />
	AQAAAAAAAAAAc293dAAAABhzc3J0AAAAAQAAAAAAAAAArEQAAAAAABZzc3NzAAAAAQAA<br />
	AAAAAAAAABAAAAAWc3NjYwAAAAEAAAAAAAAAAAACAAAAHHZlcnMAAAABAAAAAAAAAAAA<br />
	AwAUAAEAAAAAABVlbnZpAAAAAQAAAAAAAAAAAQAAAD9zYXZlAAAAAQAAAAIAAAAAAAAA<br />
	FWZhc3QAAAABAAAAAAAAAAAAAAAAFnNzdHkAAAABAAAAAAAAAAAAAQ==</p>
<p>	Type<br />
	Movie</p>
<p>Result: Script exits without doing anything</p>
<p>Also: </p>
<p>// Launch QuickTime Player Application<br />
var qtPlayerApp = WScript.CreateObject(&#8220;QuickTimePlayerLib.QuickTimePlayerApp&#8221;);<br />
WScript.Sleep(7000);<br />
if (qtPlayerApp == null)    {<br />
    WScript.Echo(&#8220;Unable to launch QuickTime Player!&#8221;);<br />
    WScript.Quit();<br />
}</p>
<p>I don&#8217;t know if that is the correct syntax cause i&#8217;m not a js scripter.</p>
<p>Help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexis D.</title>
		<link>http://www.softimageblog.com/archives/103/comment-page-1#comment-17401</link>
		<dc:creator>Alexis D.</dc:creator>
		<pubDate>Fri, 14 Aug 2009 18:48:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.xsi-blog.com/?p=103#comment-17401</guid>
		<description>Hi! Would you be so kind to show me how to set the dimension, audio codec an video codec of the output file using the QTExporter?</description>
		<content:encoded><![CDATA[<p>Hi! Would you be so kind to show me how to set the dimension, audio codec an video codec of the output file using the QTExporter?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

