Device Info
class DeviceInfo : MediaDeviceInfo
Represents information about a media device (camera or microphone).
Obtain device information using getDevices, getVideoDevices, or getAudioDevices.
Code Example:
Set<DeviceInfo> devices = VideoSDK.getDevices();
for (DeviceInfo device : devices) {
Log.d("Device", device.getLabel() + " (" + device.getKind() + ")");
}
Content copied to clipboard