Decompile .swf file to get images in python - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:45:19Z http://stackoverflow.com/feeds/question/1081183 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081183/decompile-swf-file-to-get-images-in-python 0 Decompile .swf file to get images in python quilby 2009-07-04T00:15:11Z 2009-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#1081195 2 Answer by CodeToGlory for Decompile .swf file to get images in python CodeToGlory 2009-07-04T00:24:59Z 2009-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#1081288 2 Answer by Unknown for Decompile .swf file to get images in python Unknown 2009-07-04T01:28:22Z 2009-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#1081290 2 Answer by ars for Decompile .swf file to get images in python ars 2009-07-04T01:31:22Z 2009-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>