0
import PitchFinder from 'pitchfinder'

const detectPitch = PitchFinder.AMDF()
const notes = ['A', 'A#', 'B', 'C', 'C#', 'D', 'D#', 'E', 'F', 'G', 'G#']

export default {
  data () {
    return {
      note: 'A',
      register: 4,
      cents: 0
    }
  },
  mounted () {
    navigator.mediaDevices.getUserMedia({ audio: true })
      .then(stream => {
        const context = new AudioContext()
        const source = context.createMediaStreamSource(stream)
        const processor = context.createScriptProcessor()

        source.connect(processor)
        processor.connect(context.destination)

        processor.onaudioprocess = e => {
          const hz = detectPitch(e.inputBuffer.getChannelData(0))
          if (hz) {
            console.log(hz)

            // ¢ or c = 1200 × log2 (f2 / f1), 1 semitone = 100 cents
            const semitones = 12 * (Math.log2((hz) / 440))
            const cents = semitones * 100

            // TODO: update component
          }
        }
      })
      .catch(e => {
        // TODO: handle error
      })
    }
  }
}

我的 Vue 组件中有上述代码(请注意,仅附加了一些与 Vue 相关的代码作为上下文。)我遇到了打印到控制台的值不准确的问题。我使用了一架无人机,并用其他著名的调谐器(A = 440 Hz)验证了它的音高。当使用我的代码打印到控制台时,Hz 始终为 ~404,其他音高也会偏移。这是为什么?谢谢。

4

1 回答 1

1

您的代码中其他地方的采样率错误。

440 * 44100.0/48000.0 = 404.25

我的猜测是您以 48 kHz 运行音频输入,但音高检测器认为采样率为 44.1 kHz。

于 2018-10-26T06:07:44.480 回答