First of all, you find here just my projects that I consider either finished or abandoned.
Image Tool is a command line program that allows to change the format, resize and change the number of colours of image files. It can also produce animated GIF and split them back into individual frames.
This program uses functions developed by the FreeImage project, hence it requires the freeimage.dll be in the same folder or in the windows sytem directory.
My program has a few limitations due to both image formats and the FreeImage library. However, it can process several files with the same modifications in a single line.
Windows Media Renamer is a command line program developed with Windows Media Format SDK 9.5 . It changes the names of .wma and .mp3 according to their artist, album, track number and title tags.
At the beginning, the program ask the user for the structure of the filename. Put what you want except forbidden characters like ? and / . For example,
ARTIST - ALBUM # TRACKNUMBER TITLE
will rename a file "famous artist - album title # 1 first song title".
Afterwards, if the user gives an argument in the command line when he launched the program, it will ask for a directory and will rename all the audio files in this directory and its subdirectories based on the filename structure the user has just given ; or else it will repeatidly show a dialog box for the user to select files and will rename the selected files until the user presses cancel in the dialog box.
Then, the program will quit.
Notes : Check that the tags are set and correct before renaming files.
If the resulting filename already exists, the program will not change the filename, consequently you will not lose existing files.
If the resulting filename contains forbidden characters such as ? and / , it will not rename the file.