>>>> "S" == Shani Hadiyanto
Pribadi <shanipribadi(a)gmx.net> writes:
S> I know I have to split it into individual mono files, but how,
S> and with what. can I use sndfile- or sox, or perhaps ecasound
S> itself?
This should split an 8 channel input into separate outputs:
$ ecasound -a:1,2,3,4,5,6,7,8 -i 8-chan-file.wav \
-a:1 -f:16,1,44100 -o mono-1.wav \
-a:2 -f:16,1,44100 -o mono-2.wav -chcopy:2,1\
-a:3 -f:16,1,44100 -o mono-3.wav -chcopy:3,1\
-a:4 -f:16,1,44100 -o mono-4.wav -chcopy:4,1\
-a:5 -f:16,1,44100 -o mono-5.wav -chcopy:5,1\
-a:6 -f:16,1,44100 -o mono-6.wav -chcopy:6,1\
-a:7 -f:16,1,44100 -o mono-7.wav -chcopy:7,1\
-a:8 -f:16,1,44100 -o mono-8.wav -chcopy:8,1
-anders