Decompile .swf file to get images in python - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:45:19Zhttp://stackoverflow.com/feeds/question/1081183http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081183/decompile-swf-file-to-get-images-in-python0Decompile .swf file to get images in pythonquilby2009-07-04T00:15:11Z2009-07-04T01:31:22Z
<p>I would like to decompile a .swf file and get all the images from it, in python.</p>
<p>Are there any libraries that do this?</p>
http://stackoverflow.com/questions/1081183/decompile-swf-file-to-get-images-in-python/1081195#10811952Answer by CodeToGlory for Decompile .swf file to get images in pythonCodeToGlory2009-07-04T00:24:59Z2009-07-04T00:24:59Z<p>I don't think there are any libraries available for python, but maybe you can have an offline process to decompile swf using <a href="http://www.sothink.com/product/flashdecompiler/" rel="nofollow">sothink flash decompiler</a> Also I did not come across any decompiler so far that is 100% accurate.</p>
http://stackoverflow.com/questions/1081183/decompile-swf-file-to-get-images-in-python/1081288#10812882Answer by Unknown for Decompile .swf file to get images in pythonUnknown2009-07-04T01:28:22Z2009-07-04T01:28:22Z<p>There are no public swf decompiler libraries for Python.</p>
<p>Use a 3rd party program and the Python <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess module</a> to execute it.</p>
http://stackoverflow.com/questions/1081183/decompile-swf-file-to-get-images-in-python/1081290#10812902Answer by ars for Decompile .swf file to get images in pythonars2009-07-04T01:31:22Z2009-07-04T01:31:22Z<p>The SWFTools distribution has a command line program, SWFExtract, that can do this. You could call that from python to do what you want:</p>
<p><a href="http://www.swftools.org/" rel="nofollow">http://www.swftools.org/</a></p>
<p><a href="http://www.swftools.org/swfextract.html" rel="nofollow">http://www.swftools.org/swfextract.html</a></p>