我试图弄清楚我的代码可能是我尝试在IMX.6
板上使用相机的问题。问题是qml
我使用的代码是水平复制输出。
我正在使用“- platform wayland
”启动 Qt 应用程序(我有所需的库)。我也在使用Gstreamer
图书馆。
这是相机的输出:
来自相机的重复视频
这是我在 Qt 示例中使用的代码:
Camera {
id: camera
deviceId: QtMultimedia.availableCameras[0].deviceId
captureMode: Camera.CaptureViewfinder
}
VideoOutput {
source: camera
width: 520
height: 450
x: 140
y: 30
orientation: 0
focus : visible
}
欢迎任何建议。