Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/src/commit/c0f17145c96ff1336f1650da4661a59d83af591e/doc/convert_wav2raw.txt
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
Convert WAV to RAW:
|
|
for i in *.wav
|
|
do
|
|
sox $i -c 1 -b 16 -L `basename $i .wav`.raw
|
|
done
|
|
|
|
Convert RAW to WAV:
|
|
for i in *.raw
|
|
do
|
|
sox -r 44100 -c 1 -b 16 -L -e signed $i `basename $i .raw`.wav
|
|
done
|
|
|