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();
}
}
在不同的平台上需要使用不同的解码器。
- windows:lavFilter
- Linux:gstreamer
标签:原生,Qt,parent,source,MediaPlayer,mediaplayer,id,fill 来源: https://blog.csdn.net/quietbxj/article/details/122235845