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); });