mirror of
https://github.com/xiph/opus.git
synced 2025-05-16 00:18:29 +00:00
6 lines
174 B
Bash
6 lines
174 B
Bash
# Place in 16k-LP7 from TSPSpeech.iso and run to concatenate wave files
|
|
# into one headerless training file
|
|
for i in */*.wav
|
|
do
|
|
sox $i -r 16000 -c 1 -t sw -
|
|
done > input.s16
|