Hey guys, someone's house got robbed a few days ago. She has an outdoor security camera system run from a regular desktop, 4 cameras attached to it. When she tried to view the footage from the night before, the Pc started powering off everytime she moved the mouse and would restart on it's own.
So she doesn't know if the pc was working at all before then or when it started malfunctioning. She took the HDD out and brought it to me to attempt data recovery which I have done and now seeing 170 SWF files totaling 330gb.
I was told The SWF files need to be viewed with Adobe Flash together with an SWF standalone player but when I try to open any of the may SWF files in the different players I am finding online they are not playing. I have tried so far swffileplayer and Elmedia and now waiting to try 5kPlayer but wondering if there is any online option I might be able to upload one of the swf files to try please or if any ideas why the files may not be opening in the standalone players? The files have different sizes from 1gb to 4gb.
+ Reply to Thread
Results 1 to 30 of 69
-
-
sample clip? and/or mediainfo text readout?
SWF usually means one (or both) of 2 things:
1. Original Shockwave file - created to conform to Adobe (Macromedia) Director, which can inlcude video & audio streams, midi, icon/sprites that animate, clickable links, specialty program code (think about it along the lines of java).
2. Original version of Adobe Flash - which can include video & audio, and possibly a few other minor things that nobody but adobe uses.
If it were #1, you will have a VERY hard time of it, and would likely have to resort to using a 2000's-era PC (Win2k/XP) and play it with a Director or Shockwave player, then screencap it.
If it were #2, you should have many more (and more straightforward) conversion options.
Scott -
This is what shows in the data recovery folders and files
https://i.postimg.cc/fykf353W/IMG-0159.jpg -
OK, so please run one of those SWF files (a larger one, preferably) through MediaInfo and post the Text formatted export. This will tell us about the internal structure of those files (assuming they are basically all structured the same).
Thanks,
Scott -
What happens if you drop a file on an open browser window (IE or Firefox), I use to play .SWF files by this method. You also may have the problem that your recovery program may not have recovered the files intact and they are corrupted.
-
-
I looked at different YouTube videos and instructions on how to open swf in google browser but it does not work. When I right click on the swf file on my desktop and choose from properties to "open with" and select Chrome the Save As box opens suggesting I save the file the in the Downloads folder.
Last edited by mikehende; 11th Oct 2019 at 14:01.
-
Well, that's not exactly what I had asked, but it'll do.
So it looks like you've got an h264/AVC-encoded video encapsulated in SWF container.
OR
You have video that is raw or encapsulated in an MP4, etc, but that the file extension is "non-standard" (aka wrong).
Either you rename the extension to MP4 and see if it plays, or demux to raw and then remux to MP4 and then it should play.
Let's assume it's the latter.
There are a number of web examples of using ffmpeg to demux FLV and remux into MP4 (some people have just called it "passthrough", which is slightly inaccurate but close enough). Here's one: https://superuser.com/questions/772569/which-ffmpeg-command-do-i-use-to-passthrough-flv-to-mp4
So, make a copy of your *.SWF file and save as *.FLV. Then run the ffmpeg batch script. You should have a playable MP4 at the end.
Do this for 1 short test file first (assuming it has the same mediainfo traits), and let us know how it goes. If all is well, do the same for all the rest.
One thing I am worried about is that you have MINIMAL info in the video section. This could be indicative of encrypted files. If they are encrypted, you are almost positively SOL!
Scott -
Thanks for the help but this seems very technical, would it make a difference if I were to simply look for any swf to mp4 converter?
No, the online converters are all showing files seize too large even though I chose one of the smallest ones at 1.7gbLast edited by mikehende; 13th Oct 2019 at 10:43.
-
you mean simply by righclicking on the file and changing the extension from .SWF to .mp4?
-
Actually, I installed a software called Final Media Player and the videos now show
-
Can you upload one of the files, I am interested in it. Doesn‘t matter what is to see on it.
-
Trying but even the smaller file which is 1.7gb is not uploading
-
Try this and let me know if you can view the file please?
https://drive.google.com/open?id=1en6i7iGz3sCNpt_rnK8Nbm8AU7EaPGqo -
I‘ll do tomorrow, I live in Germany and it is 23:04 already and have to get up early tomorrow. Thank you.
-
Oh cool. No rush on my end. I see you're from Bavaria? I spent a few years in Bayreuth in the mid 80s
-
Here's a short segment of the video remuxed with ffmpeg. It's viewable with several media players but shows a lot of corruption (ffmpeg displayed many errors as it remuxed). I remuxed with the command line:
Code:ffmpeg -y -i file015.mp4 -ss 01:05:00 -t 00:05:00 -codec copy file015.remux.mp4
Code:ffmpeg -y -i file015.mp4 -codec copy file015.remux.mp4
-
Thanks, I appreciate your efforts. Can you tell me if there is a way to batch change all 170 files to .mp4 extension or would I need to do them one by one and same deal with remixing too?
-
-
You can use ffempg in a batch file to remux all the swf files in a folder:
Code:for %%F in (*.swf) do (ffmpeg -y -i "%%F" -codec copy "%%~dpnF.remuxed.mp4") pause
Add the /D switch for all files in a folder and subfolders therein.
Code:for /R %%F in (*.swf) do (ffmpeg -y -i "%%F" -codec copy "%%~dpnF.remuxed.mp4") pause
-
She would need a little step by step to do the command lines. I just spoke to her and asked her if she would would be willing to pay you for the step by step instructions to do the remuxing and she said yes. So is this something you can help her with please? If yes, please tell me the cost and if you accept PayPal so she can deal with you directly? She is computer savvy, my job was only to recover the data from the hard drive which I have done.
-
No need to pay, just create the text file with the "Code" and change the *.txt file to *.bat and place it in the folder with the files. Doubleclick the file bat file, then the cmd window opens and runs and the files are being created.
Similar Threads
-
Playing vector based SWF files
By Greatminty in forum Video ConversionReplies: 10Last Post: 18th Feb 2018, 12:45 -
Need help with Mplayer to play mov files which reference to external files
By Selur in forum Newbie / General discussionsReplies: 0Last Post: 2nd Dec 2017, 12:21 -
Is there any media player that plays FLV or SWF files form Youtube?
By peggypwr1 in forum Newbie / General discussionsReplies: 14Last Post: 13th Nov 2015, 00:55 -
DVD video doesnt play. VOB files play fine. How do i remake DVD?
By chrisie in forum Newbie / General discussionsReplies: 2Last Post: 7th Jul 2015, 14:48 -
[SOLVED] Can't download SWF video
By yetanotherlogin in forum Video Streaming DownloadingReplies: 2Last Post: 17th Oct 2014, 11:03