PHP前端开发

使用JavaScript/HTML5实时生成声音

百变鹏仔 3个月前 (09-21) #HTML
文章标签 实时

Web Audio API用于控制音频,允许您选择音频源。您还可以添加效果;创建音频可视化、平移等。

示例

您可以尝试运行以下代码片段来生成声音−

// use one context per document. Here we are creating one context for one document. You can create for other documents alsovar context = new (window.AudioContext || window.webkitAudioContext)();// oscillatorvar os = context.createOscillator();  os.type = 'sine'; // sine is the default. So you can also use square, saw tooth, triangleos.frequency.value = 500; // setting the frequency Hzos.connect(context.destination); // connecting  to the destination// starting the oscillatoros.start();  os.stop(context.currentTime + 5); // stop 5 seconds after the current time