我在转换WAV文件的音频格式时遇到了问题。我正在用麦克风录音,录音格式如下: PCM_SIGNED 44100.0 Hz,16位,单声道,2字节/帧我正在使用以下代码ais); //Getting the below Exception on this linejava.lang.IllegalArgumentException:不支持的转换: PCM_SIGN
new AudioFormat(48000, 16, 1, true, true);AudioFormat format = new AudioFormat(32000, 16, 2,true, true);
当我直接得到48千赫,并将它推到32千赫音频格式,声音是倾斜的,有没有办法将48千赫单声道声音转换为32千赫立体声?