I need to convert a whole bunch of static SWFs to SVGs and I was hoping that there was some sort of command line tool I could use so I could script it with PowerShell. Does anyone know of such an application?

link|improve this question
feedback

4 Answers

Sourceforge seems to have an SWF to SVG converter.

http://swf2svg.sourceforge.net/

Or, the other way around

http://svg2swf.sourceforge.net/

link|improve this answer
This, unfortunately is a web-based application. As the title of the question states, I need to automate this from a command-line, with no dependencies on an internet connection. – blesh Oct 20 '10 at 17:14
Sorry, I followed the link to the source code and missed the "Web converter tool" midway down the page. The svg2swf tool is command line so I stupidly assumed the swf2svg was too. – mazianni Oct 20 '10 at 18:34
feedback

Research In Motion's development kit has a command line utility for this. You can get it in the dev kit here. The file is in the bin directory and is called swftosvg.exe.

Usage:
swftosvg [-help] [-version] [-o 'outputfile'] [-d 'imagedir'] 'inputfile'.swf
Options:
-help
display this help message
-version
display product version
-o
write the result of the conversion to 'outputfile' [default: 'inputfile'.svg]
-d
write converted images to directory 'imagedir' [default: same directory as 'outputfile']

link|improve this answer
feedback

SWF is not necessarily static, where SVG usually is, there's no real way of converting SWF to SVG.

link|improve this answer
Actually, all of the SWFs I have are static. – blesh Oct 4 '10 at 14:59
Also, I know it can be done, as I've done it in the past, but I can't remember the app I used because it was two years ago. – blesh Oct 4 '10 at 15:01
@blesh doesn't matter, they generally aren't... SWF and SVG are two very different kind of files... – BloodPhilia Oct 4 '10 at 15:01
I've done it in the past. So yes, it can be done. In fact, there's a [web tool to do it][1], but what I'm looking for is a command line tool to do it. [1]: eprg.org/~sgp/swf2svg.html – blesh Oct 4 '10 at 15:11
@blesh I see... Another thing learned today :) – BloodPhilia Oct 4 '10 at 15:23
show 2 more comments
feedback
up vote 0 down vote accepted

I found it myself.

The tool URL is here, it requires Java, but whatever.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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