Re: [Tuxpaint-i18n] [Tuxpaint-stamps] Reduced bitrate of many stamp description sounds
An award-winning drawing program for children of all ages
Brought to you by:
wkendrick
|
From: Bill K. <nb...@so...> - 2024-01-12 05:09:18
|
On Thu, Jan 11, 2024 at 09:05:05PM -0800, Bill Kendrick wrote:
<snip>
> Today, I did further work, this time to reduce the bitrate of sounds,
> so they are never higher than 32,000bps. That saved another 41MB.
<snip>
> Since the bitrate change is technically destructive (but not
> noticable to my ears), I decided NOT to commit all of the changes
> at once, but instead am doing so on a per-language,
> per-top-level-directory basis.
>
> e.g., all BE "animals", then all CA "animals", ... then all BE "space",
> then all CA "space", then all FR "space", ... and so on...
BTW I forgot to mention, I did this with a one-off BASH command
(no reason to save it as a shell script in `tools`):
for i in `ls`; do
echo "============================================================="
for j in `echo "be bg ca da el es fr lt ml nl nn ro ru"`; do
echo "-------------------------------------------------------------"
echo $i - $j
git add `find $i -name "*_desc_$j.ogg"`
git commit -m "Reduce bitrate of $j descriptions of $i stamps"
git push
done
done
FYI!
-bill!
|