You can reduce webserver load a little bit by stripping unneeded parts of the source code. I managed to reduce file size from 340 to 230 kB without removing any functionality. Here's what I did:
- Open freemoviecompilertoolbox.php and replace the line
require_once("freemoviecompiler.php");
with the contents of the file freemoviecompiler.php.
- Use a good text editor (or awk) and replace all lines beginning with "//" (may have leading whitspace) and all empty lines.
The code's not pretty to read anymore afterwards but if server load is an issue it may be worth a try.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You can reduce webserver load a little bit by stripping unneeded parts of the source code. I managed to reduce file size from 340 to 230 kB without removing any functionality. Here's what I did:
- Open freemoviecompilertoolbox.php and replace the line
require_once("freemoviecompiler.php");
with the contents of the file freemoviecompiler.php.
- Use a good text editor (or awk) and replace all lines beginning with "//" (may have leading whitspace) and all empty lines.
The code's not pretty to read anymore afterwards but if server load is an issue it may be worth a try.