- Jan 15, 2018
- 269
- 1,214
I actually don't play with sound, and I could say some people also don't, so a version with no sound for the ones that want a lighter version would work.Unfortunately(?) A lot of the game's larger files aren't image files (but for example sound) so even changing all of the image files wouldn't make nearly as much of a difference as you'd expect.
Or reduce all audio to 128kbps 44100Hz, with no real loss (The only way to really see any difference is being a musician with a 1k+ headphone), even if you don't want to lose that data in some way you can just store it in your computer for maybe in the future use it.
Also here is a ratio that I calculated: (Data from version 0.8.3a-pc)
File Type | Size (MB) | Ratio (%) |
Image | 379 | 48.71 |
Sound | 299 | 38.43 |
Code | 23.2 | 2.98 |
Others | 79.8 | 10.24 |
Total | 778 | 100 |
It's possible to get a size reduction of about 25% on sound and 33.33% on images, it goes to something close to 252.67MB for images and 224.25MB for sound, having a total of 579.92MB, total gain of 25.46% over the 778MB
Now if you consider the no-sound version with no image conversion you get only 479MB or 352MB with image conversion (lossless webp)
About the work time: with no-sound it's pretty simple, remove all sounds, and just add 1 line (make sure it's inside the init python), here:
Python:
config.sound = False
About the audio conversion, and image conversion, some software do the work for you, you just need to select the folder, check to do it recursively and let your computer work while you take a sip of your coffee (if you don't find any just lemme know and I will make one for you in about a week).
But you'll need to update all codes that have .png to .webp (also can be done using the "Replace All" function of any text editor you use, (Even notepad has this, if you use notepad++ you can do all files at once), just use put ".png" to ".webp")