Files
Pokemon-Firered/tools/wav2agb/test_fast_compress.sh
T
Marcus Huderle 14b76daff8 Convert .aif files to .wav (#711)
* Migrate .aif files to .wav

* cleanup
2025-12-01 09:01:35 -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