import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick 2.4 import QtQuick.Controls 1.3 import QtMultimedia 5.12 Window { visible: true width: 640 height: 480 title: qsTr("Hello World") MediaPlayer{ id:videoPlayer source: "rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov" //i can play this link //source: "rtsp://192.168.2.119:554" //i can not play muted: true autoPlay: true autoLoad: true } VideoOutput{ id:camera1 width: 1280 height: 720 anchors.fill: parent } }