Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

Playing RTSP Video with QML over windows

$
0
0
Hello everyone! I am trying to play a RTSP stream in QML into a Video tag as following: Repeater {     model: 8       Video {         Layout.fillWidth: true         Layout.fillHeight: true           fillMode: VideoOutput.Stretch           source: Controller.urlCanal(index + 1)         autoPlay: true         autoLoad: true           CustomBorder {             commonBorder: true             color: "#228e14"             commonBorderWidth: 3         }     } } This should display 8 videoScreens, but I am getting the error: DirectShowPlayerService::doSetUrlSource: Unresolved error code 800c000d rtsp://192.168.50.10:8082/user=admin&password=admin&channel=7&stream=0.sdp?real_stream Does QML support RTSP? If so, What I am doing wrong? If not, How could I get this working? PS.: I’ve als tried to use MediaPlayer together with VideoOutput, but I was given the same error. Thank you in advance

Viewing all articles
Browse latest Browse all 4972

Trending Articles