我必须编写一个简单的视频播放器,可以在一定时间内显示一些字幕,链接或图片(如YouTube)。我不知道如何使用QVideoWidget显示任何东西。我找不到任何有用的类来做到这一点。你能给我一些建议吗?
我按照你的方式做了,但是在我加载任何视频后,QLabel消失了......
player->setVideoOutput(vw);
playlistView->setMaximumWidth(200);
playlistView->setMinimumWidth(300);
window = new QWidget;
Playerlayout = new QGridLayout;
subtitleWidget = new QLabel;
subtitleWidget->setMaximumWidth(1000);
subtitleWidget->setMaximumHeight(100);
subtitleWidget->setStyleSheet("QLabel {background-color : red; color
blue;}");
subtitleWidget->setAlignment(Qt::AlignCenter | Qt::AlignBottom);
subtitleWidget->setWordWrap(true);
subtitleWidget->setText("example subtitle");
Playerlayout->addWidget(vw,0,0);
Playerlayout->addWidget(subtitleWidget,0,0);
Playerlayout->addWidget(playlistView,0,1,1,2);
如果QVideoWidget
没有直接提供您需要的内容,那么您可以随时设置覆盖。
基本的布局项层次结构类似于...
QWidget
layout
QVideoWidget
subtitle_widget
在这种情况下,布局可以是使用堆叠模式QStackedLayout::StackAll
的QStackedLayout
,也可以是QVideoWidget
和subtitle_widget
占据相同像元但具有正确 z 顺序的QGridLayout
。
随QGridLayout
...
auto *w = new QWidget;
auto *l = new QGridLayout(w);
auto *video_widget = new QVideoWidget;
auto *subtitle_widget = new QLabel;
/*
* Subtitles will be shown at the bottom of the 'screen'
* and centred horizontally.
*/
subtitle_widget->setAlignment(Qt::AlignHCenter | Qt::AlignBottom);
subtitle_widget->setWordWrap(true);
/*
* Place both the video and subtitle widgets in cell (0, 0).
*/
l->addWidget(video_widget, 0, 0);
l->addWidget(subtitle_widget, 0, 0);
字幕等现在只需在适当的时间调用subtitle_widget->setText(...)
即可显示。
相同的方法可以很容易地扩展到覆盖其他类型的信息。