Is your feature request related to a problem? Please describe.
As I plan to develop an application based on WebRTC, I've been checking the function navigator.mediaDevices.enumerateDevices(), but when testing it on Linux (Ubuntu in my case), I got an error Unhandled Promise Rejection: TypeError: undefined is not an object (evaluating 'navigator.mediaDevices.enumerateDevices')
Describe the solution you'd like
When calling navigator.mediaDevices.enumerateDevices(), I should get the list of media devices available on the guest OS, like in a standard Web navigator.
For example
await navigator.mediaDevices.getUserMedia({audio: true, video: true});
Describe alternatives you've considered
I don't have any alternative.
Additional context
I don't have any additional context.
Is your feature request related to a problem? Please describe.
As I plan to develop an application based on WebRTC, I've been checking the function
navigator.mediaDevices.enumerateDevices(), but when testing it on Linux (Ubuntu in my case), I got an errorUnhandled Promise Rejection: TypeError: undefined is not an object (evaluating 'navigator.mediaDevices.enumerateDevices')Describe the solution you'd like
When calling
navigator.mediaDevices.enumerateDevices(), I should get the list of media devices available on the guest OS, like in a standard Web navigator.For example
Describe alternatives you've considered
I don't have any alternative.
Additional context
I don't have any additional context.