背景中的MP4(主窗口)qt6.3



我想知道是否有接受mp4的类可以使用,因为多媒体类在qt6.3中不是活动的。我试图在后台加载mp4文件,但在qt(6.3(中找不到类

您可以使用QMediaPlayer进行此操作。

player = new QMediaPlayer;
player->setSource(QUrl::fromLocalFile("/Users/lpapp/Music/song.mp4"));
player->play();

对于视频渲染,您甚至可以使用QVideoWidget类:

videoWidget = new QVideoWidget;
player->setVideoOutput(videoWidget);
videoWidget->show();

最新更新