Web Audio API는 오디오 소스를 선택할 수 있는 오디오를 제어하는 데 사용됩니다. 효과를 추가할 수도 있습니다. 오디오 시각화, 패닝 등을 만듭니다.
예시
다음 코드 스니펫을 실행하여 소리를 생성할 수 있습니다. −
// use one context per document. Here we are creating one context for one document. You can create for other documents also var context = new (window.AudioContext || window.webkitAudioContext)(); // oscillator var os = context.createOscillator(); os.type = 'sine'; // sine is the default. So you can also use square, saw tooth, triangle os.frequency.value = 500; // setting the frequency Hz os.connect(context.destination); // connecting to the destination // starting the oscillator os.start(); os.stop(context.currentTime + 5); // stop 5 seconds after the current time