4

I'm using the Web Audio Api ( navigator.getUserMedia({audio: true}, function, function) ) for audio recording.

If the user has several microphone devices, can I select the desired recording device?

I've came across a problematic situation where a brand new Dell laptop (running Windows 8.1) has 2 microphone devices (on board and external) and the external device was set to default (set to default by the operation system).

As expected, when recording, the input comes from the external microphone which means - silence - no actual input.

Can I work around this technologically and capture the audio from the on board device?

While searching I found this question which talks about detecting the sound card.

From the answer:

You have no control over the latency. You have no way of detecting the actual sound device. All you can determine is if the browser gives you access to the audio channels, and how many of them. I've also found that regardless of what is on the other side, Chrome will only open up a stereo channel. (It will also treat mono devices as stereo, copying the first channel to both L and R channels.) Firefox has similar issues.

Recording devices screenshot - https://i.sstatic.net/jUrCw.jpg (can't add the actual photo yet)

Would appreciate suggestions.

Thanks! Avi.

3 Answers 3

2

You want to use device enumeration and a deviceid constraint. As per @cwilso's answer, https://webaudiodemos.appspot.com/input/index.html is an example that works in Chrome. If you change the default microphone in the OS, Chrome should pick it up.

Firefox is adding deviceIds and constraints, but they haven't hit release yet. Currently on firefox the user can select any audio device for input if they don't select "Allow Always" when approving (if they do, then it will select the default device without asking the user). Note that Allow Always requires loading over https, and it's not the default action (unlike Chrome).

Sign up to request clarification or add additional context in comments.

1 Comment

See webrtc.github.io/samples/src/content/devices/input-output for a device-selection example that works in both Chrome and Firefox Nightly (42). Firefox implements the standard here, whereas Chrome uses an older API, but as long as you use adapter.js - like the example does - then you're fine.
2

You can select any recording device you want with Web Audio API, look at https://jsfiddle.net/bomzj/beap6n2g/.

Comments

0

You can (select the input device) - take a look at https://webaudiodemos.appspot.com/input/index.html, which lets the user select the input. Note that you won't get access to the actual names unless you serve securely (https instead of http).

3 Comments

This only works on Chrome. do you have any suggestions how to handle Firefox?
Can I detect which device is the default? Thx!
@AviAnkona Some OSes like OSX have a "virtual" default device, which usually has the word "default" in its label (which is only available during use or if user has granted persistent permissions), but not every OS does this, and I don't know of any other way to detect a default. See my comment on jesup's answer about Firefox.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.