I wrote a java code to read .wav file into a byte array.
.WAV file are 44100Hz (sample per second), 16 bits depth
For audio with length 1 min, I expect to get a byte array with length 60*44100*2. (1 min = 60 sec, each second has 44100 samples, each sample contains 16bits = 2bytes)
However, the array length seems to be doubled. Is there any explanation ?