how to stream .m3u8 using qml video player?
Unsolved
QML and Qt Quick
-
Hello guys doest qml video support .m3u8 for streaming?
here is my code it works using rtsp and http but it doest not work if the source is .m3u8Rectangle { width: 300 height: 300 color: "black" MediaPlayer { id: mediaPlayer //source: "rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov" source: "http://www.streambox.fr/playlists/test_001/stream.m3u8" //playing: true autoPlay: true //volume: 0 } VideoOutput { id: video anchors.fill: parent source: mediaPlayer }
Any Idea?