i working on Windows 7 32 bit and Qt quick 2.0
i’m trying to play a rtsp stream with qml but i keep getting this error:
DirectShowPlayerService::doSetUrlSource: Unresolved error code 800c0008
this is the qml code:
import QtQuick 2.0
import QtMultimedia 5.0
Rectangle {
width: 500
height: 700
color: "#abcca3"
Video{
id:videoPlayer
x: 2
y: 2
width: 250
height: 250
source: "rtsp://username@192.168.5.21:554/live1.sdp"
focus: true
autoPlay: true
}
}
can anyone help me?
↧