Re: UserMediaSettings

On 14 March 2014 16:24, Cullen Jennings <fluffy@iii.ca> wrote:
> Two optional constrains, the first one saying the source is A and the second one saying the source is B.

Or you could try this:

navigator.getUserMedia({ 'sourceId': 'A' }, success, function() {
  navigator.getUserMedia({ 'sourceId': 'B' }, success, failure);
});

It seems like the example is basically contrived, so why not incur the
additional user prompt?

Received on Saturday, 15 March 2014 22:29:29 UTC