Compresses videos of any size to 8MB or less.
Since FFmpeg could be accommodated, it was combined into an exe file.
This eliminates the need to install FFmpeg separately.
There is a release for windows users.
It skips the installation of the Python package and is easy to run.
When the process is finished, output.mp4 will be output. If it is working properly, the size should be less than 8MB.
It can be built for Windows with PyInstaller.
pyinstaller "main.py" --add-data "./ffmpeg.exe;." --onefile --noconsole
--noconsole option may cause problems. Please remove it if you get an error.
- Create a decent GUI and support drag-and-drop.
It seems that I need to learn Threading to develop GUI. That's a lot of work. - Automatic update
- Optimize operation.
Some of the processing is ridiculous. Please understand that I have not done much programming.