웹 오디오 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
위 내용은 JavaScript/HTML5를 이용한 실시간 사운드 생성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!