This simplified interface represents a media device with its essential properties.
The kind property indicates the type of device (camera, microphone, or speaker).
Example
constdevices: DeviceInfo[] = [ { deviceId:'abc123', label:'FaceTime HD Camera', kind:'videoinput' }, { deviceId:'def456', label:'MacBook Pro Microphone', kind:'audioinput' }, { deviceId:'ghi789', label:'MacBook Pro Speakers', kind:'audiooutput' }, ];
Information about a media device.
Remarks
This simplified interface represents a media device with its essential properties. The
kindproperty indicates the type of device (camera, microphone, or speaker).Example