ওয়েব অডিও 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