Qml video play rtsp stream -- Unresolved error code
-
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.0Rectangle {
width: 500
height: 700
color: "#abcca3"Video{
id:videoPlayer
x: 2
y: 2
width: 250
height: 250source: "rtsp://username@192.168.5.21:554/live1.sdp" focus: true autoPlay: true }
}@
can anyone help me?
-
i found this project: https://github.com/RSATom/QmlVlc it works really great (it's based on libvlc)
-
So guys, any success regarding to this issue? I am facing the same.