API Audio Web digunakan untuk mengawal audio, membolehkan anda memilih sumber audio. Anda juga boleh menambah kesan; membuat visualisasi audio, menyorot dan banyak lagi.
Anda boleh cuba jalankan coretan kod berikut untuk menjana bunyi−
// 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
Atas ialah kandungan terperinci Penjanaan bunyi masa nyata menggunakan JavaScript/HTML5. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!