qtmultimediaquick "qml module not found"
Solved
QML and Qt Quick
-
why it have error that not having qtmultimediaquick, how can i fix that, does any other way that i can use to stream camera not using it
import QtQuick 2.15
import QtQuick.Window 2.15
import QtMultimedia 5.15
import QtMultimediaQuick 5.15Window {
visible: true
width: 640
height: 480
title: "RTSP Camera Stream"VideoOutput {
id: videoOutput
anchors.fill: parent
source: camera
}MediaPlayer {
id: mediaPlayer
autoPlay: true
source: "rtsp://admin:123456aA@192.168.100.130:554"
}Video {
id: camera
width: 640
height: 480
source: mediaPlayer
}}
0 -
@Ronel_qtmaster i alrd removed qtmultimediaquick but then it happened that video output and media player not found
-
@Ronel_qtmaster like this?
-
@Ronel_qtmaster
then this happen, how to fix it -