* 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
10 lines
170 B
Bash
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
|