<?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>[mck] &#187; Animation</title>
	<atom:link href="http://www.matthijskamstra.nl/blog/index.php/category/animation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matthijskamstra.nl/blog</link>
	<description>a polymath zapper</description>
	<lastBuildDate>Fri, 27 Jan 2012 22:32:36 +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>Convert SWF to AVI &#8211; part2</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/12/24/convert-swf-to-avi-part2/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/12/24/convert-swf-to-avi-part2/#comments</comments>
		<pubDate>Mon, 24 Dec 2007 17:40:08 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Open source / Freeware]]></category>
		<category><![CDATA[Tools of the trade]]></category>
		<category><![CDATA[frame by frame]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[SWF to AVI]]></category>
		<category><![CDATA[swf2avi]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/12/24/convert-swf-to-avi-part2/</guid>
		<description><![CDATA[How to convert a SWF to an AVI (without spending any cash)? I have written about this question before [Covert SWF to AVI (SWF2AVI or SWFtoAVI)] and my answer was back then: swf2avi, a freeware project by Mario Pizzinini. SWF2AVI is not an active project (last update from 2002-08-27), but does the job very well. [...]]]></description>
			<content:encoded><![CDATA[<p>How to convert a SWF to an AVI (without spending any cash)? I have written about this question before [<a href="http://www.matthijskamstra.nl/blog/index.php/2006/05/12/convert-swf-to-avi-swf2avi-or-swftoavi/">Covert SWF to AVI (SWF2AVI or SWFtoAVI)</a>] and my answer was back then: <a href="http://www.pizzinini.net/projects/swf2avi/">swf2avi</a>, a freeware project by Mario Pizzinini.<br />
SWF2AVI is not an active project (last update from 2002-08-27), but does the job very well.<br />
I&#8217;ve used it a couple of times, and when you know who this program works, you get the result you need.</p>
<p>Back then I didn&#8217;t have an alternative, but I do now! </p>
<p>And the alternative, in my opinion, is better and more user friendly: <a href="http://www.avi-swf-convert.com/">http://www.avi-swf-convert.com/</a><br />
<a href="http://www.avi-swf-convert.com/gfx/swf-avi-convert-screenshot.gif" rel="flashbox" title="Screenshot swf avi convert"><img src="http://www.avi-swf-convert.com/gfx/swf-avi-convert-small-screenshot.gif" alt="swf avi convert screenshot" /></a></p>
<h3>SWF>>AVI</h3>
<p>is a more recent project (the last update is from 2005-07-20), and does the same thing as swf2avi but has some extra very handy features:</p>
<ul>
<li>Drag and drop files in the converter</li>
<li>Play the file in a small popup</li>
<li>Select an output folder</li>
<li>Set output frame rate</li>
<li>Batch Convert: convert more then one SWF to AVI</li>
<li>Profiles: you can create custom conversion profiles whereto the SWF can be exported (captures size, output size, frame rate and rotation)</li>
</ul>
<p><strong>But it doesn&#8217;t convert sound and interactive animations may not be properly converted</strong></p>
<p>It&#8217;s an freeware program, which does what it says: it converts SWF to (uncompressed) AVI. So if you need a compressed version of your animation you need another program to do that (something to write about in another post). SWF>>AVI is a Windows program which needs Microsoft .Net Framework (it will be automatically downloaded and installed if required).</p>
<p>The same rules (code) apply to SWF>>AVI as it did with SWF2AVI<br />
It&#8217;s smart to use frame based animation, although it seems that SWF>>AVI is faster in grabbing the images, so timebased animation is can be an option if you don&#8217;t care for an exact export.<br />
Otherwise use the code posted here for you convenience:</p>
<p><span id="more-370"></span><br />
The only thing you have to remember that your script should be based upon frame-rate (fps) and not on time (milli-seconds).<br />
The next examples are based on a FLA with framerate of 25 fps, there is a movieClip with the name <code>ball_mc</code> in the root and a dynamic text field named <code>time_txt</code> also in the root.</p>
<p><strong>Example 1:</strong></p>
<div class="showcode">
<pre>import mx.transitions.Tween;
/*
// this code doesn't work (very well) because it is based on time (seconds)
var myTween:Tween = new Tween (this.ball_mc, '_x', mx.transitions.easing.Elastic.easeOut, 0, 300, 5, true);
*/
// this code will work: it's based on frames
var myTween:Tween = new Tween (this.ball_mc, '_x', mx.transitions.easing.Elastic.easeOut, 0, 300, (5 * 25), false);
</pre>
</div>
<p><strong>Example 2:</strong></p>
<pre><code>/*
// timebased: doesn't work
this.onEnterFrame = function () {
	this.time_txt.text = (getTimer ()/1000) +  " sec.";
};
*/
// based on framerate
this.onEnterFrame = function () {
	this.time_txt.text = (_root._currentframe / 25) + " sec.";
};
</code></pre>
<p>more information about mx.transitions: <a target="_blank" href="http://livedocs.macromedia.com/flash/8/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&#038;file=00004143.html">macromedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/12/24/convert-swf-to-avi-part2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tipografia</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/09/04/tipografia/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/09/04/tipografia/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 19:59:24 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/09/04/tipografia/</guid>
		<description><![CDATA[An intro for court-tv (I really can&#8217;t say if it&#8217;s the real stuff or an experiment) Very impressive, I specially like the speed.]]></description>
			<content:encoded><![CDATA[<p>An intro for court-tv (I really can&#8217;t say if it&#8217;s the real stuff or an experiment)<br />
Very impressive, I specially like the speed. </p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/UbwXnFbCTDA"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/UbwXnFbCTDA" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/09/04/tipografia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vídeo de tipografia</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/09/03/video-de-tipografia/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/09/03/video-de-tipografia/#comments</comments>
		<pubDate>Mon, 03 Sep 2007 20:02:07 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/09/03/video-de-tipografia/</guid>
		<description><![CDATA[Type history, I wouldn&#8217;t choose some of the footage used but a impressive piece of history.]]></description>
			<content:encoded><![CDATA[<p>Type history, I wouldn&#8217;t choose some of the footage used but a impressive piece of history.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/joSkTL13O3c"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/joSkTL13O3c" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/09/03/video-de-tipografia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trainspotting in Typography</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/09/02/trainspotting-in-typography/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/09/02/trainspotting-in-typography/#comments</comments>
		<pubDate>Sun, 02 Sep 2007 15:59:05 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/09/02/trainspotting-in-typography/</guid>
		<description><![CDATA[Intro from the movie &#8220;Trainspotting&#8221; (I haven&#8217;t seen the movie in a while, so I don&#8217;t know if it&#8217;s the original intro, or a school assignment) Story: Intro Trainspotting in Typography. Motion design with after-effects.]]></description>
			<content:encoded><![CDATA[<p>Intro from the movie &#8220;Trainspotting&#8221;<br />
(I haven&#8217;t seen the movie in a while, so I don&#8217;t know if it&#8217;s the original intro, or a school assignment)</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/XpH-A8IEpnY"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/XpH-A8IEpnY" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Story:</p>
<blockquote><p>Intro Trainspotting in Typography.<br />
Motion design with after-effects.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/09/02/trainspotting-in-typography/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ikea</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/09/01/ikea/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/09/01/ikea/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 17:03:58 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/09/01/ikea/</guid>
		<description><![CDATA[A very little typography animation Made for a typography course. Music by Bay Tremore Animation by Hannes Drexl Sadly Hannes Drexl need 17 seconds for the credits, but other wise very nice.]]></description>
			<content:encoded><![CDATA[<p>A very little typography animation</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/NjUsaBYzAT0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/NjUsaBYzAT0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Made for a typography course.<br />
Music by Bay Tremore<br />
Animation by Hannes Drexl</p>
<p>Sadly Hannes Drexl need 17 seconds for the credits, but other wise very nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/09/01/ikea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Puzzle</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/08/31/the-puzzle/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/08/31/the-puzzle/#comments</comments>
		<pubDate>Fri, 31 Aug 2007 17:16:43 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/08/31/the-puzzle/</guid>
		<description><![CDATA[From the movie Saw. It&#8217;s refreshing to see different approach for typographic animation then the &#8216;standard&#8217; After Effects solutions. Story: This is my first attempt at type animation. Was an assignment given to us at University, it was done in less than a week including choosing a topic, and story boards. there are a couple [...]]]></description>
			<content:encoded><![CDATA[<p>From the movie <strong>Saw</strong>.<br />
It&#8217;s refreshing to see different approach for typographic animation then the &#8216;standard&#8217; After Effects solutions.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/aeuqZIFFZdo"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/aeuqZIFFZdo" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Story:</p>
<blockquote><p>This is my first attempt at type animation. Was an assignment given to us at University, it was done in less than a week including choosing a topic, and story boards. there are a couple of shots where the camera isn&#8217;t quite right but ran out of time.. Hope you enjoy anyway..<br />
And just a note, am looking for a job in the graffic design , animation field</p></blockquote>
<p>Made by <a href="http://www.youtube.com/user/Mixednutsnz">Mixednutsnz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/08/31/the-puzzle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monoculture</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/08/30/monoculture/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/08/30/monoculture/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 17:21:23 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/08/30/monoculture/</guid>
		<description><![CDATA[A monologue from the comic transmetropolitan form Warren Ellis. Story: Spider Jerusalem&#8217;s rant about Monoculture, from Warren Ellis&#8217; comic Transmetropolitan. Voicing done by my housemate Colin Janke, music is &#8216;Medula Oblongata&#8217; by The Dust Brothers, and the animation and putting it all together is by me, as am assignment for my graphic design course. Made [...]]]></description>
			<content:encoded><![CDATA[<p>A monologue from the comic <a href="http://www.transmetropolitan.com/">transmetropolitan</a> form Warren Ellis.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/qU57-eac9po"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/qU57-eac9po" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Story:</p>
<blockquote><p>Spider Jerusalem&#8217;s rant about Monoculture, from Warren Ellis&#8217; comic Transmetropolitan. Voicing done by my housemate Colin Janke, music is &#8216;Medula Oblongata&#8217; by The Dust Brothers, and the animation and putting it all together is by me, as am assignment for my graphic design course.</p></blockquote>
<p>Made by <a href="http://www.youtube.com/user/fearmeforiampink">fearmeforiampink</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/08/30/monoculture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ARE YOU GONNA BE MY GIRL?</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/08/30/are-you-gonna-be-my-girl/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/08/30/are-you-gonna-be-my-girl/#comments</comments>
		<pubDate>Thu, 30 Aug 2007 16:18:59 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/08/30/are-you-gonna-be-my-girl/</guid>
		<description><![CDATA[Typographic movie based upon a number by Jet: are you gonna be my girl Starts of slow but picks up in the middle.]]></description>
			<content:encoded><![CDATA[<p>Typographic movie based upon a number by <strong>Jet</strong>: are you gonna be my girl<br />
Starts of slow but picks up in the middle. </p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/8542y8KF5qI"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/8542y8KF5qI" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/08/30/are-you-gonna-be-my-girl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AMTV Reality Dawg House</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/08/29/amtv-reality-dawg-house/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/08/29/amtv-reality-dawg-house/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 17:07:01 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/08/29/amtv-reality-dawg-house/</guid>
		<description><![CDATA[Simple but very nice. I like the fact that it has it&#8217;s own &#8216;signature&#8217;. Not the standard zoom rotate actions in-your-face with big bold fonts. Story: Teaser to our annual dog daze event. this theme was based on reality shows, so i paid tribute to all those cool MTV ads you see]]></description>
			<content:encoded><![CDATA[<p>Simple but very nice.<br />
I like the fact that it has it&#8217;s own &#8216;signature&#8217;. Not the standard zoom rotate actions in-your-face with big bold fonts.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/bhdmvGz57tg"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/bhdmvGz57tg" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>Story:</p>
<blockquote><p>Teaser to our annual dog daze event. this theme was based on reality shows, so i paid tribute to all those cool MTV ads you see</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/08/29/amtv-reality-dawg-house/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DEVIL&#8217;S ADVOCATE in typography</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2007/08/28/devils-advocate-in-typography/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2007/08/28/devils-advocate-in-typography/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 16:17:09 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2007/08/28/devils-advocate-in-typography/</guid>
		<description><![CDATA[A quote from the movie &#8220;Devil&#8217;s advocate&#8221; by Al Pacino. not very inspiring.]]></description>
			<content:encoded><![CDATA[<p>A quote from the movie &#8220;Devil&#8217;s advocate&#8221; by Al Pacino.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/QX7N58df0j0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/QX7N58df0j0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>not very inspiring.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2007/08/28/devils-advocate-in-typography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

