阅读此讨论后:使用 Qt 在 xoverlay 之上绘制我最终得到以下代码:
class Player : public QGst::Ui::VideoWidget { ... }
void Player::play() {
QGst::PipelinePtr pipeline = QGst::ElementFactory::make("playbin2").dynamicCast<QGst::Pipeline>();
watchPipeline(pipeline);
pipeline->setProperty("uri", "/path/to/my/video.mp4");
QGst::BusPtr bus = pipeline->bus();
bus->addSignalWatch();
QGlib::connect(bus, "message", this, &Player::onBusMessage);
pipeline->setState(QGst::StatePlaying);
}
所以我在这个播放我的视频QWidget
。现在我想QWidget
在这个之上添加另一个来绘制一些东西或放置另一个QWidget
带有 alpha 混合的东西。我在主应用程序中尝试了这段代码:
Player *player = new Player(this);
QWidget *videoOverlay = new QWidget(player);
// set the videoOverlay geometry
videoOverlay->setWindowFlags(Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
videoOverlay->setAttribute(Qt::WA_TranslucentBackground);
但我得到一个黑色的不透明QWidget
。根本没有透明度。我错过了什么?