Things You'll Need:
- Swifty Unlock
- FFMpeg
- Text editor (Notepad)
-
Step 1
Download and un-zip the apps to either the directory where the swf files are located or to their own folders for regular use. Unlock runs on a double click, FFMpeg can be run from a batch file.
-
Step 2
Swifty UnlockGet some information on your swf file. Open the file in Swifty Unlock. If the file is compressed (see #1 in the picture), un-check the "Save Compressed" box as in #2, then save (#3). I prefer to save to a new file, as a "just in case" but it's not required. Swf files must be un-compressed to use them with FFMpeg.
-
Step 3
Make a batch file for FFMpeg. Start your preferred text editor. Notepad or the like will do. To extract the video and audio to a single video file, enter this all on one line:
ffmpeg -i your_swf_file.swf -vcodec copy -acodec copy -y your_new_file.flv
with the input and output files named to your needs. If FFMpeg isn't in the same directory as the swf files, use something like this with full file paths in quotes:
"C:\Path\to\ffmpeg.exe" -i "C:\Path\to\your_swf_file.swf" -vcodec copy -acodec copy -y "C:\Path\to\your_new_file.flv"
Save the text file as "Extract.bat" or something similar and double-click to run. There'll shortly be an extracted flv video file in the working folder.













Comments
Gitaagami said
on 7/21/2008 Hey thanks! That's really encouraging.seeing as you've been at it for a while and I'm just leapin' in.
Kilogramm said
on 7/21/2008 Great break down on such a difficult topic!