comparison README.md @ 15:69e9cd8817a7

Merge branch 'master' of github.com:mrpapersonic/msvpvf
author Paper <mrpapersonic@gmail.com>
date Tue, 01 Feb 2022 22:31:54 -0500
parents 9692d33cec71
children 02e46804c923
comparison
equal deleted inserted replaced
14:423aa3429d21 15:69e9cd8817a7
1 # msvpvf 1 # msvpvf
2 C/C++ port of [msvpvf](https://archive.org/details/msvpvf-1.3-movie-studio-vegas-pro-version-faker-msvpvf-updated-to-1.31-focus-on-vegas) 2 C/C++ port of [msvpvf](https://archive.org/details/msvpvf-1.3-movie-studio-vegas-pro-version-faker-msvpvf-updated-to-1.31-focus-on-vegas)
3 3
4 ## What is this?? 4 ## What is this??
5 msvpvf is a tool used to "downgrade" VEGAS Pro project files, written entirely in C. 5 msvpvf is a tool used to "downgrade" VEGAS Pro project files, written entirely in C. It has no runtime libraries, making it incredibly lightweight. On macOS, the CLI compiles to 50 KB, and on Windows the GUI app is only 19 KB.
6 6
7 Currently, it doesn't look that great. Making pretty apps with `windows.h` is not the easiest job in the world. If someone is willing enough to make it look prettier, be my guest. 7 Currently, the GUI doesn't look that great. Making pretty apps with `windows.h` is not the easiest job in the world; if someone is willing enough to make it look prettier, be my guest.
8 8
9 It is based on an old tool under the same name that was written in C#/.NET, but the original website is now down and it hasn't been maintained in over 2 years. 9 It is based on an old tool under the same name that was written in C#/.NET, but the original website is now down and it hasn't been maintained in over 2 years.
10 10
11 ## Compilation 11 ## Compilation
12 ``` 12 ```
13 git clone https://github.com/mrpapersonic/msvpvf-c 13 git clone https://github.com/mrpapersonic/msvpvf
14 cd msvpvf-c 14 cd msvpvf
15 make 15 make
16 ``` 16 ```
17 17
18 NOTE: if you are using Windows, there is a GUI available. To compile it, use `make gui`. 18 NOTE: if you are using Windows, there is a GUI available. To compile it, use `make gui`.