I'm working on a game where we want to have animated cutscenes and I was so happy to see that I could wiggle down the actual .import size of those pngs to a mere 40kb each using lossy compression.
But the projected memory ( I guess that's VRAM usage ) is insanely high at about 5mb per image. When I go with VRAM compressed I can get the memory usage down to 1mb but the import size goes up 25 times??
We are targeting HTML mainly and I think with itch.io we have a 200mb file size cap. Either way I don't want to come anywhere near that just because we have maybe some 200-300 animation frames for our cutscenes.
I don't exactly understand when the VRAM is being used though, how dynamic this is going to be. If it's only the image that's currently displayed in the VRAM then the memory obviously wouldnt have to be a consideration at all.
Then there's also the option of video playback, but I dont know what limitations I'm running into there.
I hope someone has experience with this and can point me in the right direction, because these numbers seem a bit crazy to me. For now the only option I see is to reduce the resolution of our animation frames from 1080p to 540p and hope thats enough..