pokeemerald/tools/wav2agb/test_fast_compress.sh
Marcus Huderle d507b24ae9
Some checks failed
CI / build (push) Has been cancelled
Convert .aif files to .wav (#2213)
* Convert uncompress samples to .wav files, and introduce wav2agb with matching capabilities

Convert cries

Remove aif2pcm and cleanup wav2agb

* Add --no-pad option to support hq mixer

* Update wav2agb README

* Include the alignment padding in wav2agb

* cleanup
2025-12-01 09:01:26 -06:00

10 lines
170 B
Bash

#!/bin/sh
for l in $(seq 1 8)
do
echo lookahead="$l":
wav2agb "$1" -c -l "$l" --verbose
echo lookahead="$l" fast:
wav2agb "$1" -f -l "$l" --verbose
done