Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. how to stream .m3u8 using qml video player?
Forum Updated to NodeBB v4.3 + New Features

how to stream .m3u8 using qml video player?

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
1 Posts 1 Posters 1.1k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jhovarie
    wrote on last edited by jhovarie
    #1

    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 .m3u8

      Rectangle {
              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?

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved