I would like to write a Java program to split a wav file into channels. The input would be a wav file, and the output would be as many wav files as there are channels. I can read a wav file in Java but, how can I split it into channels?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The Wave header includes fields for the sample size (in bits) for each sample and the number of channels encoded within the wave file. With this information in hand, you can split the channels: The sample data in a wave file contains the samples for each channel interleaved. I.e. if you had two channels (A,B) you have sA1, sB1, sA2, SB2, sA3, sB3 - first a sample for A, then one for B, then one for A again and so on. That means if you have the sample size, i.e. 16 bit you read 2 bytes from the file which belong to channel A, then 2 bytes that belong to channel B and so on. |
|||
|
|
See this sample and write each channel into one file. |
|||
|