gpt4 book ai didi

java - 如何混合两个 PCM 音频文件

转载 作者:行者123 更新时间:2023-11-29 19:01:42 25 4
gpt4 key购买 nike

我确实测试了两个 PCM 音频文件。但得不到真正的音频文件。

我用了这个example 所以,我的代码:

  private void mixSound() throws IOException {

byte[] music1 = null;
music1 = new byte[in1.available()];
music1 = convertStreamToByteArray(in1);
in1.close();


byte[] music2 = null;
music2 = new byte[in2.available()];
music2 = convertStreamToByteArray(in2);
in2.close();

byte[] output = new byte[music1.length];

for (int i = 0; i < output.length; i++) {

samplef1 = music1[i] / 128.0f;
samplef2 = music2[i] / 128.0f;

float mixed = samplef1 + samplef2;
// reduce the volume a bit:
mixed *= 0.8;
// hard clipping
if (mixed > 1.0f) mixed = 1.0f;

if (mixed < -1.0f) mixed = -1.0f;

byte outputSample = (byte) (mixed * 128.0f);
output[i] = outputSample;

} //for loop

save = openFileOutput(filename, Context.MODE_PRIVATE);
save.write(output);
save.flush();
save.close();
}

public byte[] convertStreamToByteArray(InputStream is) throws IOException {

ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buff = new byte[8000];
int i;
while ((i = is.read(buff, 0, buff.length)) > 0) {
baos.write(buff, 0, i);
}

return baos.toByteArray(); // be sure to close InputStream in calling function

}

2 个比特率 64000 & 采样率 16000 GH & sterio 的音频文件

in1 = getResources().openRawResource(R.raw.a_2);
in2 = getResources().openRawResource(R.raw.a_diz_2);

也尝试转换 bytes array to short array -> then calculate-> then convert short to byte 使用转换方法像 bytes2Shorts(byte[] buf) 和 shorts2Bytes(short[] s)。但是钢铁却失败了。

有人能说我哪里错了吗?

最佳答案

这里有很多问题,我会尝试解决其中的一些问题

首先,使用byte[]建议您的PCM波形数据格式AudioFormat.ENCODING_PCM_8BIT(或者如果它应该是这种格式已经不是)。此格式使用8-bit (1 byte) unsigned,表示声音样本存储在 [0, 255] 范围内(不在 [-127, +128] 或 [-128,+127] 范围内)。

这意味着负值在 [0, 127] 范围内,正样本在 [128,255] 范围内。

混合值时,最好从一开始就防止裁剪,所以我会使用

byte mixed = (music1[i] + music2[i])/2; //this ensures that mixed remains within the `correct range` for your PCM format

您还可以将样本除以 128(如果您想将它们转换为浮点值)

float samplef1 = (((float)music1[i]-127)/128 ; //converting samples to [-1, +1] range -- -1 corresponds a sample value of 0 and +1 to 255

float samplef2 = (((float)music2[i]-127)/128;

float mixed = (samplef1+samplef2)/2;

请注意,您现在有 2 个选项来播放以这种方式生成的数据(样本)。将 floats 转换回 bytes 或使用 AudioFormat.ENCODING_PCM_FLOAT 格式。

audio files with bit rate 64000 & sampling rate 16000 GH & sterio

这不可能是正确的。典型的采样率为 4000Hz、8000Hz、11000Hz、16000Hz、22050Hz 或 44100Hz。对于位深度,音频通常使用 8 位、16 位或 32 位

例如,CD 质量的音频使用 44100Hz,16 位,立体声 格式。

关于java - 如何混合两个 PCM 音频文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48849732/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com