Is there a way to get access to the master mixer or other devices/channels via the web audio api? -


is there way record audio being mixed down (possibly tab/process) on hardware? there way input/connect browsers mixer?

studio hardware has several input/output channels, mono and/or stereo; there way these connected onto graph? there/will there device enumeration api?

the closest thing might able data microphone, , set system microphone system's output (in windows... manage audio devices > recording > stereo mix). use getusermedia audio.

navigator.webkitgetusermedia({audio: true}, function(stream) {     var microphone = context.createmediastreamsource(stream); }); 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -