I have a SWF of unknown origin, and I need to know which flash player version it was targeted at when it was published. What's the best way to get this info?

link|improve this question

feedback

5 Answers

up vote 8 down vote accepted

The 4th byte in the SWF file carries the version number, for example 0A is for Flash Player 10.

EDIT: Because of the high interest this question got I've decided to give more feedback

The first 8 bytes of any SWF file are not compressed, the rest of the file could be compressed (or not) by zlib compression.

  • 1st byte: 'F' (not compressed) OR 'C' (compressed).
  • 2nd byte: 'W' always.
  • 3rd byte: 'S' always.
  • 4th byte: version number (09 means this file is targeted at Flash Player 9 and so on...)
  • 5th to 8th: Length of entire file in bytes.
link|improve this answer
1  
Thanks, looks like it's flash player 10. How might I differentiate 10 and 10.1? johndierks.com/img/flashversionhexdump.png – John Dec 4 '10 at 5:27
2  
The SWF file itself is not targeted into a specific minor version of Flash Player. – LordCover Dec 4 '10 at 9:00
feedback

The Flex SDK contains a tool called swfdump that displays all of the metadata inside of a SWF file. Here is the beginning of the output when I run "swfdump foo.swf":

<swf xmlns='http://macromedia/2003/swfx' version='9' framerate='24' size='10000x7500' compressed='true'>
link|improve this answer
feedback

Take a gander at the SWF spec from http://www.adobe.com/devnet/swf.html

Then do a hex dump or open the SWF in an editor that can display hex. The SWF version is one of the first few bytes and is before the compressed data starts. I want to say it is byte 4, but I don't totally recall. The value is the version number. IIRC, the point version is not encoded in the SWF.

GNU file may also tell you. I may have edited my rules to do this, though.

link|improve this answer
Quick note about the point version thing. Adobe has made some fairly significant changes to Flash Player mid-version (eg, H.264 support in 9.0.115). When you add a SWF to a page you should really use swfobject and specify the point version to make sure the user has the proper player (and provide ExpressInstall if possible for them). Determining the minimum point version from an unknown SWF takes some trial and error along with all of the archived Flash Players from adobe.com, as well as knowledge of what to look for. – MPD Dec 4 '10 at 2:23
Any tips on how this process goes? Just knowing the full version number is good enough for me right now, but I'd be interested to hear how this process works. – John Dec 4 '10 at 5:36
You need to check the release notes for the point versions, and look for the new features or things not working. Then you guess if those features are being used. Some are obvious (like H.264 support), others are more subtle. You can also install the debug version of Flash Player which will let you see any exceptions. You can often see a feature request in the call stack. – MPD Dec 4 '10 at 12:29
feedback

There's also http://swfversion.com

link|improve this answer
feedback

this link might help http://code.google.com/p/swfobject/wiki/api

link|improve this answer
I don't think that's it. Unless I'm missing what you're referring to, I don't see anything on there about determining which flash player a swf requires. That seems to be more targeted at figuring what flash player a client is running. – John Dec 4 '10 at 1:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.