tsoding / eepers

Simple Turn-based Game
MIT License
344 stars 19 forks source link

Compress all audio to ogg to save space #19

Closed jiffygist closed 7 months ago

jiffygist commented 7 months ago

I converted the files in the sounds directory to ogg with low bitrate using ffmpeg

find . \( -name "*.ogg" -o -name "*.wav" -o -name "*.mp3" \) -print0 | parallel -0 ffmpeg -i {} -b:a 96k {.}.ogg -y
find . \( -name "*.wav" -o -name "*.mp3" \) -delete

and ammended the commit that added sounds.

rebase, don't merge

jiffygist commented 7 months ago

Rewriting history might as well be a bad idea. Maybe do the conversions only for releases?

rexim commented 7 months ago

I have no idea what is going on in here, but consider starting over. I think it's just easier.