我正在使用这种方法(如下所示)将 wav 文件读取到字节数组中。现在我将它存储在我的字节数组中,我想改变声音的音量。
private byte[] getAudioFileData(final String filePath) {
byte[] data = null;
try {
final ByteArrayOutputStream baout = new ByteArrayOutputStream();
final File file = new File(filePath);
final AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(file);
byte[] buffer = new byte[4096];
int c;
while ((c = audioInputStream.read(buffer, 0, buffer.length)) != -1) {
baout.write(buffer, 0, c);
}
audioInputStream.close();
baout.close();
data = baout.toByteArray();
} catch (Exception e) {
e.printStackTrace();
}
return data;
}
编辑:根据要求提供有关音频格式的一些信息:
PCM_SIGNED 44100.0 Hz,16 位,单声道,2 字节/帧,小端
在物理课上,我记得你可以通过将正弦值乘以 0 到 1 之间的数字来改变正弦波的幅度。
编辑:更新了 16 位样本的代码:
private byte[] adjustVolume(byte[] audioSamples, double volume) {
byte[] array = new byte[audioSamples.length];
for (int i = 0; i < array.length; i+=2) {
// convert byte pair to int
int audioSample = (int) ((audioSamples[i+1] & 0xff) << 8) | (audioSamples[i] & 0xff);
audioSample = (int) (audioSample * volume);
// convert back
array[i] = (byte) audioSample;
array[i+1] = (byte) (audioSample >> 8);
}
return array;
}
如果我乘以audioSample
,声音会严重失真volume
。如果我不这样做并将两个数组与我进行比较,Arrays.compare(array, audioSample)
我可以得出结论,字节数组正在正确地转换为 int,反之亦然。
有人可以帮帮我吗?我在这里做错了什么?谢谢!:)