Decompile .swf file to get images in python

flash, python

Solution

The SWFTools distribution has a command line program, SWFExtract, that can do this. You could call that from python to do what you want:

http://www.swftools.org/

http://www.swftools.org/swfextract.html

Problem

I would like to decompile a .swf file and get all the images from it, in python. Are there any libraries that do this?

Original source