首頁 > web前端 > html教學 > 使用JavaScript/HTML5即時產生聲音

使用JavaScript/HTML5即時產生聲音

PHPz
發布: 2023-09-15 09:29:06
轉載
1422 人瀏覽過

使用JavaScript/HTML5即時產生聲音

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
登入後複製

以上是使用JavaScript/HTML5即時產生聲音的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板