Questions tagged [enumerate-devices]

24 questions
0
votes
0 answers

Multiple cameras on Android

Why do some Android devices expose all physical cameras in navigator.mediaDevices.enumerateDevices(), while other expose just one? The devices where I tested run on Android 10 or 11. According to this documentation, devices running on Android 9 or…
Alin
  • 347
  • 2
  • 9
0
votes
1 answer

How do I display console log information to the user in a dropdown menu in React JSX?

I need help with displaying the information from the console log to the user. So in order to get a list of audio and video devices connected to the user's computer, I have this code. I can only see the list of devices in the console log (or via…
0
votes
1 answer

navigator.mediaDevices.enumerateDevices() does not get multiple audiooutput

Project: list all media devices, then select 1 specific audio output device which is different from the default of Windows I used enumerateDevices(), following many code examples, example here, and: on Firefox: list of audioinput, videoinput, no…
0
votes
1 answer

safari 13.1 navigator.mediaDevices.enumerateDevices() return only audio devices

Im facing with an issue on desktop Safari 13.1 version. If I open the console in the web inspector (with a regular macbook which has webcam and mic) and execute this command on any kind of website: navigator.mediaDevices.enumerateDevices() First…
0
votes
1 answer

Enumerate mediaDevices empty javascript

I want to select which camera to use. I ve found that exists: enumerateDevices() https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/enumerateDevices if (!navigator.mediaDevices || !navigator.mediaDevices.enumerateDevices) { …
proera
  • 123
  • 1
  • 3
  • 14
0
votes
0 answers

Why are the interfaces in Windows.Devices internal?

I'm writing an internal nuget package for my company that will allow applications in our suite to speak to specific bluetooth devices for certain workflows. Pretty cool stuff! But as I began the project, I tried to take the opportunity to run TDD…
Jake Smith
  • 2,332
  • 1
  • 30
  • 68
0
votes
0 answers

DeviceInformation.Pairing is always null

I have a problem with Bluetooth pairing in the windows UWP device driver. I am currently on a windows 10 (Build 10240) computer and I use a vs2015. I create a device watcher with a (custom)selector to get paired and unpaired Bluetooth devices. I get…
dkeekstra
  • 1
  • 1
0
votes
0 answers

GetRawInputDeviceList returns 0 when I try to enumerate connected devices in a Windows Service

I am trying to make a Windows Service Client that connects to a Server in c++. The server is not a service and both, the Client and the Server are written in c++ using winsock. The goal is to enumerate the connected devices on the Client Service and…
-1
votes
2 answers

Fetching device.description using Alsa soundlib in C++

I am new to alsa, pulseAudio, needed help with this issue. This is the truncated output of pacmd command on my system pacmd list-sources: name: properties: alsa.resolution_bits = "16" …
Mayur Jadhav
  • 139
  • 1
  • 2
  • 9
1
2