其他分享
首页 > 其他分享> > Qt使用其原生MediaPlayer

Qt使用其原生MediaPlayer

作者:互联网

示例程序

Item {
      MediaPlayer {
          id: mediaplayer
          source: "groovy_video.mp4"
      }

      VideoOutput {
          anchors.fill: parent
          source: mediaplayer
      }

      MouseArea {
          id: playArea
          anchors.fill: parent
          onPressed: mediaplayer.play();
      }
  }

在不同的平台上需要使用不同的解码器。

标签:原生,Qt,parent,source,MediaPlayer,mediaplayer,id,fill
来源: https://blog.csdn.net/quietbxj/article/details/122235845