
{"id":370,"date":"2007-12-24T18:40:08","date_gmt":"2007-12-24T17:40:08","guid":{"rendered":"http:\/\/www.matthijskamstra.nl\/blog\/index.php\/2007\/12\/24\/convert-swf-to-avi-part2\/"},"modified":"2007-12-24T17:16:04","modified_gmt":"2007-12-24T16:16:04","slug":"convert-swf-to-avi-part2","status":"publish","type":"post","link":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/","title":{"rendered":"Convert SWF to AVI &#8211; part2"},"content":{"rendered":"<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 \/>\nSWF2AVI is not an active project (last update from 2002-08-27), but does the job very well.<br \/>\nI&#8217;ve used it a couple of times, and when you know who this program works, you get the result you need.<\/p>\n<p>Back then I didn&#8217;t have an alternative, but I do now! <\/p>\n<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 \/>\n<a href=\"http:\/\/www.avi-swf-convert.com\/gfx\/swf-avi-convert-screenshot.gif\" rel=\"flashbox\" title=\"Screenshot swf avi convert\"><img decoding=\"async\" src=\"http:\/\/www.avi-swf-convert.com\/gfx\/swf-avi-convert-small-screenshot.gif\" alt=\"swf avi convert screenshot\" \/><\/a><\/p>\n<h3>SWF>>AVI<\/h3>\n<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>\n<ul>\n<li>Drag and drop files in the converter<\/li>\n<li>Play the file in a small popup<\/li>\n<li>Select an output folder<\/li>\n<li>Set output frame rate<\/li>\n<li>Batch Convert: convert more then one SWF to AVI<\/li>\n<li>Profiles: you can create custom conversion profiles whereto the SWF can be exported (captures size, output size, frame rate and rotation)<\/li>\n<\/ul>\n<p><strong>But it doesn&#8217;t convert sound and interactive animations may not be properly converted<\/strong><\/p>\n<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>\n<p>The same rules (code) apply to SWF>>AVI as it did with SWF2AVI<br \/>\nIt&#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 \/>\nOtherwise use the code posted here for you convenience:<\/p>\n<p><!--more--><br \/>\nThe only thing you have to remember that your script should be based upon frame-rate (fps) and not on time (milli-seconds).<br \/>\nThe 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>\n<p><strong>Example 1:<\/strong><\/p>\n<div class=\"showcode\">\n<pre>import mx.transitions.Tween;\r\n\/*\r\n\/\/ this code doesn't work (very well) because it is based on time (seconds)\r\nvar myTween:Tween = new Tween (this.ball_mc, '_x', mx.transitions.easing.Elastic.easeOut, 0, 300, 5, true);\r\n*\/\r\n\/\/ this code will work: it's based on frames\r\nvar myTween:Tween = new Tween (this.ball_mc, '_x', mx.transitions.easing.Elastic.easeOut, 0, 300, (5 * 25), false);\r\n<\/pre>\n<\/div>\n<p><strong>Example 2:<\/strong><\/p>\n<pre><code>\/*\r\n\/\/ timebased: doesn't work\r\nthis.onEnterFrame = function () {\r\n\tthis.time_txt.text = (getTimer ()\/1000) +  \" sec.\";\r\n};\r\n*\/ \r\n\/\/ based on framerate\r\nthis.onEnterFrame = function () {\r\n\tthis.time_txt.text = (_root._currentframe \/ 25) + \" sec.\";\r\n};\r\n<\/code><\/pre>\n<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>\n","protected":false},"excerpt":{"rendered":"<p>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. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[20,3,6,12],"tags":[407,74,41,53,73,72],"class_list":["post-370","post","type-post","status-publish","format-standard","hentry","category-animation","category-flash","category-open-source-freeware","category-tools-of-the-trade","tag-animation","tag-frame-by-frame","tag-freeware","tag-swf-to-avi","tag-swf2avi","tag-video"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"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.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Matthijs Kamstra\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"[mck] | a polymath zapper\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Convert SWF to AVI \u2013 part2 | [mck]\" \/>\n\t\t<meta property=\"og:description\" content=\"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.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2007-12-24T17:40:08+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2007-12-24T16:16:04+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Convert SWF to AVI \u2013 part2 | [mck]\" \/>\n\t\t<meta name=\"twitter:description\" content=\"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.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#article\",\"name\":\"Convert SWF to AVI \\u2013 part2 | [mck]\",\"headline\":\"Convert SWF to AVI &#8211; part2\",\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/www.avi-swf-convert.com\\\/gfx\\\/swf-avi-convert-small-screenshot.gif\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#articleImage\"},\"datePublished\":\"2007-12-24T18:40:08+01:00\",\"dateModified\":\"2007-12-24T17:16:04+01:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#webpage\"},\"articleSection\":\"Animation, Flash, Open source \\\/ Freeware, Tools of the trade, Animation, frame by frame, Freeware, SWF to AVI, swf2avi, Video\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"name\":\"Flash\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"position\":2,\"name\":\"Flash\",\"item\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/tools-of-the-trade\\\/#listItem\",\"name\":\"Tools of the trade\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/tools-of-the-trade\\\/#listItem\",\"position\":3,\"name\":\"Tools of the trade\",\"item\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/tools-of-the-trade\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#listItem\",\"name\":\"Convert SWF to AVI &#8211; part2\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/#listItem\",\"name\":\"Flash\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#listItem\",\"position\":4,\"name\":\"Convert SWF to AVI &#8211; part2\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/category\\\/flash\\\/tools-of-the-trade\\\/#listItem\",\"name\":\"Tools of the trade\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\",\"name\":\"[mck]\",\"description\":\"a polymath zapper\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"Matthijs Kamstra\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/06ff22a1197b6624946e5a3377184f11ddc00ac06a6f1d2311b9d2072bdf61b1?s=96&d=wavatar&r=g\",\"width\":96,\"height\":96,\"caption\":\"Matthijs Kamstra\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#webpage\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/\",\"name\":\"Convert SWF to AVI \\u2013 part2 | [mck]\",\"description\":\"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.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/2007\\\/12\\\/24\\\/convert-swf-to-avi-part2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2007-12-24T18:40:08+01:00\",\"dateModified\":\"2007-12-24T17:16:04+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/\",\"name\":\"[mck]\",\"description\":\"a polymath zapper\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.matthijskamstra.nl\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Convert SWF to AVI \u2013 part2 | [mck]","description":"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.","canonical_url":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#article","name":"Convert SWF to AVI \u2013 part2 | [mck]","headline":"Convert SWF to AVI &#8211; part2","author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/www.avi-swf-convert.com\/gfx\/swf-avi-convert-small-screenshot.gif","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#articleImage"},"datePublished":"2007-12-24T18:40:08+01:00","dateModified":"2007-12-24T17:16:04+01:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#webpage"},"isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#webpage"},"articleSection":"Animation, Flash, Open source \/ Freeware, Tools of the trade, Animation, frame by frame, Freeware, SWF to AVI, swf2avi, Video"},{"@type":"BreadcrumbList","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.matthijskamstra.nl\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","name":"Flash"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","position":2,"name":"Flash","item":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/tools-of-the-trade\/#listItem","name":"Tools of the trade"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/tools-of-the-trade\/#listItem","position":3,"name":"Tools of the trade","item":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/tools-of-the-trade\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#listItem","name":"Convert SWF to AVI &#8211; part2"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/#listItem","name":"Flash"}},{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#listItem","position":4,"name":"Convert SWF to AVI &#8211; part2","previousItem":{"@type":"ListItem","@id":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/tools-of-the-trade\/#listItem","name":"Tools of the trade"}}]},{"@type":"Organization","@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization","name":"[mck]","description":"a polymath zapper","url":"https:\/\/www.matthijskamstra.nl\/blog\/"},{"@type":"Person","@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author","url":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/","name":"Matthijs Kamstra","image":{"@type":"ImageObject","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/06ff22a1197b6624946e5a3377184f11ddc00ac06a6f1d2311b9d2072bdf61b1?s=96&d=wavatar&r=g","width":96,"height":96,"caption":"Matthijs Kamstra"}},{"@type":"WebPage","@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#webpage","url":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/","name":"Convert SWF to AVI \u2013 part2 | [mck]","description":"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.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/#breadcrumblist"},"author":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/author\/admin\/#author"},"datePublished":"2007-12-24T18:40:08+01:00","dateModified":"2007-12-24T17:16:04+01:00"},{"@type":"WebSite","@id":"https:\/\/www.matthijskamstra.nl\/blog\/#website","url":"https:\/\/www.matthijskamstra.nl\/blog\/","name":"[mck]","description":"a polymath zapper","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.matthijskamstra.nl\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"[mck] | a polymath zapper","og:type":"article","og:title":"Convert SWF to AVI \u2013 part2 | [mck]","og:description":"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.","og:url":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/","article:published_time":"2007-12-24T17:40:08+00:00","article:modified_time":"2007-12-24T16:16:04+00:00","twitter:card":"summary_large_image","twitter:title":"Convert SWF to AVI \u2013 part2 | [mck]","twitter:description":"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."},"aioseo_meta_data":{"post_id":"370","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-12-11 09:02:55","updated":"2025-06-04 08:38:59","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.matthijskamstra.nl\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/\" title=\"Flash\">Flash<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/tools-of-the-trade\/\" title=\"Tools of the trade\">Tools of the trade<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tConvert SWF to AVI \u2013 part2\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.matthijskamstra.nl\/blog"},{"label":"Flash","link":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/"},{"label":"Tools of the trade","link":"https:\/\/www.matthijskamstra.nl\/blog\/category\/flash\/tools-of-the-trade\/"},{"label":"Convert SWF to AVI &#8211; part2","link":"https:\/\/www.matthijskamstra.nl\/blog\/2007\/12\/24\/convert-swf-to-avi-part2\/"}],"_links":{"self":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/370","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/comments?post=370"}],"version-history":[{"count":0,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/posts\/370\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/media?parent=370"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/categories?post=370"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.matthijskamstra.nl\/blog\/wp-json\/wp\/v2\/tags?post=370"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}