Thx .....
Main Topics
Browse All TopicsHow to apply below text in command line ?
i got error
Ssf2Bmp utility
When Eventcorder creates screenshots they are saved all together to one file that has the same name and location as the main events file (*.ecf), but it has an extension *.ssf (screen-shot-file). This is convenient for further processing because all the information is in one file and the screenshots are indexed for fast accessing. If you need to process the screenshots on your own you can use Ssf2Bmp utility that extracts all the pictures and saves them as *.bmp files. To do that you will need to call Ssf2Bmp.exe with command line parameters:
Ssf2Bmp.exe -s<screen_shots_file>.ssf -d<output_directory> [-a]
where:
<screen_shots_file>.ssf
is input file, the *.ssf file. Full path and extension must be specified. No wildcards allowed, no file-search is executed.
<output_directory>
is existing output directory. If the files already exist there they are overwritten without warning. Full path required.
[-a]
is optional parameter. If -a is specified no user interface (no error messages) show up and status is returned as exit code (error level).
Exit codes returned by Ssf2Bmp:
0 - no errors encountered, all screenshots were extracted
1 - non-existent SSF file
2 - output directory doesn't exist
3 - invalid bitmap found in the file, file probably corrupted
4 - insufficient number of parameters
5 - input file too short, probably corrupted
6 - can't create/overwrite output file
If the *.bmp files are successfully extracted, they have names:
<original_file_name>#<numb
For example:
MyFirstShots#004.bmp
is the fourth shot extracted from file MyFirstShots.ssf
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: BillDLPosted on 2009-10-06 at 09:12:54ID: 25506690
Hello Ajay_Ajay
/default.h tm ventcorder .asp
om/utiliti es/mouse_k eyboard/ Ev entcorders uite.exe (1)http://www.eventcorder. com/Downlo ads/Setup_ EC2.exe (2) ownloads/S etup_Event corder3.ex e (3)
exe
exe
The problem with your questions, and most likely the reason that you haven't been getting any suggestions, is that you are using software that creates its own proprietiory file types and there is a good chance that nobody else who has opened your questions has ever heard of or used EventCorder. EventCorder is one of only 5 products written by BrineSoft.
Version 2 site: http://www.eventcorder.com
Version 3 site: http://www.brinesoft.com/E
I was hoping that I would be able to unpack the file "Ssf2Bmp.exe" from the setup packages of versions 1, 2 or 3 of EventCorder which I downloaded:
http://files.brothersoft.c
http://www.brinesoft.com/D
Unfortunately I cannot find the program file "Ssf2Bmp.exe" in any of them, and an internet search for this file reveals nothing.
I find that in version 3 there is a program named "SsfEditor.exe" that allows you to open *.ssf files and then selectively save out contents to *.bmp files (Screenshot > Save to BMP > saves using name SSF_Filename#001.bmp), but the only command line options available are to open a *.ssf file, not to extract one from a *.ssf file.
Where did you get this "Ssf2Bmp.exe" file from?
What version of EventCorder are you using?
What is your Operating System?
So, you are having problems with writing a suitable command line or batch file using the options. That should be easy enough to do, but I obviously cannot test the results without the "ssf2bmp.exe" program file to verify the results.
I have attached a batch file that you can test the results with. It assumes that you are running Windows XP.
Save the file and then rename it, changing the extension from .TXT to .CMD, and accept the warnings about saving file types.
Place it in a folder containing your *.SSF files.
RIGHT-CLICK on the .CMD file and choose "Edit" to open it in Notepad.
You will see 3 lines up at the top:
set BASEDIR=%USERPROFILE%\My Pictures\Recorded
set SSFNAME=%1
set EXTRACTOR=C:\Program Files\EventCorder\Ssf2Bmp.
Leave this line alone:
set SSFNAME=%1
Do NOT alter it.
The variable %0 is always the name of the batch file itself, and %1 should be the file that has been called by it. In this case, the batch file is to be used for dragging and dropping SSF files onto, so %1 should contain the full path to the SSF file you dropped onto it.
The BASEDIR line sets the base folder for your output BMP files as:
C:\Documents and Settings\Your Name\My Pictures\Recorded
%USERPROFILE% is always your own folder, eg:
C:\Documents and Settings\Ajay
and the "My Pictures" folder is a standard user shell folder, so it should exist.
Change the "Recorded" folder name to suit your needs.
NOTE: If this folder DOES NOT ALREADY exist, then the batch file WILL CREATE IT. If it DOES exist, then the batch file will just ignore the command to create it.
The line:
set EXTRACTOR=C:\Program Files\EventCorder\Ssf2Bmp.
sets the full path to your "Ssf2Bmp.exe" file.
CHANGE the path so that it points to where you have the program.
These 2 lines should be the ONLY ones you need to change.
Save the batch file and then close Notepad.
Drag and drop an *.SSF file onto the batch file and then see what happens.
Theoretically it should do this:
1. Use the NAME of the SSF file and remove the .ssf file extension
2. Create a NEW folder with that name as a sub-folder of:
"C:\Documents and Settings\Your Name\My Pictures\Recorded"
eg. if the file name was "Test_01.ssf", then the folder:
"C:\Documents and Settings\Your Name\My Pictures\Recorded\Test_01"
should be created.
3. Runs the "Ssf2Bmp.exe" program and tells it to extract the BMP files from
it into the new folder that the batch file just created.
4. If any errors are encountered, then the batch file should explain what
the error code means, and pause to let you read it with a "Press any key
to Quit ..." prompt.
Now, I have no idea whether "Ssf2Bmp.exe" will accept parameters that are variables, and I have no way to test this. It is hard to double-check for mistakes in a batch file without being able to test it, so I have to say that I cannot accept any responsibility for any strange things it may do.
If that works for you, then it should be easy enough to create a new Right-Click menu option for the *.SSF file type to make this easier for you to use, or perhaps use it in the Right-Click "Send To" menu. Test it and see what happens.
If the "Ssf2Bmp.exe" file is a small program, and if you have web space available, then perhaps if you upload it in a zip file there for a few days and provide the link, then I could test it first. It's up to you, and may not be in compliance with the licensing for the program though.
Bill
Save file and rename, changing .TXT extension to .CMD, then follow instructions in comment above exactly.