为什么此代码会产生非常嘈杂的正弦波?

时间:2019-03-06 20:33:17

标签: java sound-synthesis sine-wave

我正在尝试用Java编写一个非常简单的声音合成器。我正在使用javax.sound.sampled软件包。 下面的代码可以工作,但是正弦波非常嘈杂,听起来像是在波浪旁边播放了一些安静的温暖噪音。

try {
    double sampleRate = 44100;
    //8 bits per sample, so a byte.
    AudioFormat audioFormat = new AudioFormat((float) sampleRate, 8, 1, true, false);
    SourceDataLine line = AudioSystem.getSourceDataLine(audioFormat);

    line.open(audioFormat);
    line.start();

    //A4
    double freq = 440.0;

    byte[] buf = new byte[1];

    //the formula for a sample is amplitude * sin(2.0 * PI * freq * time)
    for (int i = 0; i < sampleRate; i++) {
        double t = (i / (sampleRate - 1));
        double sample = 0.1 * Math.sin(2.0 * Math.PI * freq * t);

        //scaling the sound from -1, 1 to -127, 127
        buf[0] = (byte) (sample * (double) Byte.MAX_VALUE);

        line.write(buf, 0, 1);
    }

    line.drain();
    line.stop();
    line.close();
} catch (Exception e) {
    throw new RuntimeException(e);
}

我将生成的声音放入EQ中,以验证声音是否确实嘈杂,并且足够确定:

this is what I got

主频为440 hz,但不应该存在其他一些频率。为什么会这样呢?我该如何解决?

1 个答案:

答案 0 :(得分:5)

这是您的正弦波:

Jagged sine wave

这很锯齿,因为您使用的是低位深度和低幅度。您只有25种不同的样本值可供选择。

如果使用8位采样的整个范围将幅度设置为1.0,则这里是正弦波:

Smooth sine wave

这里将幅度保持在0.1,但改用16位样本:

Equally smooth sine wave

这两个选项显然都不会那么吵。