cameraDevice QML Basic Type

The cameraDevice value type describes the properties of a camera device that is connected to the system.

The list of camera devices can be queried from the MediaDevices type. To select a certain camera device set it as the device on Camera.

 CaptureSession {
     camera: Camera {
         cameraDevice: mediaDevices.defaultVideoInput
     }
 }
 MediaDevices {
     id: mediaDevices
 }