I am attempting to recover Vegas Movie Studio project files from a hard drive that was corrupted.
The data recovery application I am using, only found a few project files (i.e. *.vf *.vf.bak *.sfvidcap) and some of my video files (*.avi). I am not too concerned about the missing video files, since I can recapture them fairly easily by using the recapture option inside of the Vegas Movie Studio, but this will only work if I can recover a project file (*.vf and *.sfvidcap).
The data recovery application has an option to recover files with particular files based on their signatures and I am trying to find the missing project file by their signature.
The data recovery program uses an INI file to describe the file signatures:
[LOSTFILES]
; NAME EXT SIGLENGTH SIG TYPE SIZE
winword1= DOC,4, $9b,$a5,$21,$00, 1, 10000
BMP-file= BMP,2, $42,$4d, 12, [2, 4]
This definition will find all files (i.e. word documents) that contain the first four bytes = 9B A5 21 00.
NOTE: The definition can also get size of file from the file itself -- BMP size is at the byte stored as double word.
Any suggestions would be helpful.
The data recovery application I am using, only found a few project files (i.e. *.vf *.vf.bak *.sfvidcap) and some of my video files (*.avi). I am not too concerned about the missing video files, since I can recapture them fairly easily by using the recapture option inside of the Vegas Movie Studio, but this will only work if I can recover a project file (*.vf and *.sfvidcap).
The data recovery application has an option to recover files with particular files based on their signatures and I am trying to find the missing project file by their signature.
The data recovery program uses an INI file to describe the file signatures:
[LOSTFILES]
; NAME EXT SIGLENGTH SIG TYPE SIZE
winword1= DOC,4, $9b,$a5,$21,$00, 1, 10000
BMP-file= BMP,2, $42,$4d, 12, [2, 4]
This definition will find all files (i.e. word documents) that contain the first four bytes = 9B A5 21 00.
NOTE: The definition can also get size of file from the file itself -- BMP size is at the byte stored as double word.
Any suggestions would be helpful.