44.1kHz sampling frequency


#21

Absolutely NO clue what that is :smile: BUT....... For example if you have a patch with one sample and you change that sample, you often have to make the patch"live" a few times before the new sample plays properly. This had me confused a few times :smile:


#22

yeah, but it only seems to have to do with new samples or something.. now it just plays alright..


#23

When using sox this way you might consider to add also -b 16 -e signed as parameters because using 24bit/32bit or float encoded wav files will wreak havoc.
for file in *.wav; do sox $file basename -b 16 -e signed -c 1 -r 48000 $file.raw;
HTH