-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
6.3.1
-
None
-
Windows
-
-
4397bbfda (dev), ae4ea8507 (6.10), 6316eddcd (6.9)
-
Multimedia, weeks 18-19
According to https://doc-snapshots.qt.io/qt6-dev/qml-qtmultimedia-capturesession.html this snippet ought to be enough:
CaptureSession {id: captureSessioncamera: Camera
imageCapture: ImageCapture
{id: imageCapture}recorder: MediaRecorder
{id: recorder}videoOutput: preview}
But that will only work on linux.
On Windows it also needs:
Component.onCompleted: {
camera.start()
}