Qt :: FramelessWindowHint 플래그가있는 QWidget 및 QVideoWidget 또는 QGraphicsVideoItem을 사용하여 Qt :: WA_TranslucentBackground attirbute에서 동영상을 재생하고 싶습니다. 그러나 비디오는 보이지 않습니다. 나는 소리 만 들린다. 문제가 무엇입니까?반투명 QWidget에서 비디오를 재생하는 방법은 무엇입니까?
편집 :
#include "videoplayer.h"
#include <QtWidgets/QApplication>
#include "qboxlayout.h"
#include "qvideowidget.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QWidget *w = new QWidget;
w->setWindowFlags(Qt :: Window | Qt::FramelessWindowHint);
w->setAttribute(Qt::WA_TranslucentBackground, true);
w->setMinimumSize(300,200);
QVideoWidget *videoWidget = new QVideoWidget;
QBoxLayout *controlLayout = new QHBoxLayout;
controlLayout->setMargin(0);
controlLayout->addWidget(videoWidget);
w->setLayout(controlLayout);
QMediaPlayer mediaPlayer;
mediaPlayer.setVideoOutput(videoWidget);
mediaPlayer.setMedia(QUrl::fromLocalFile("C:/1.wmv"));
videoWidget->show();
mediaPlayer.play();
w->show();
return app.exec();
}
코드를 붙여 넣을 수 있습니까? –
질문은 내가 문제가있는 코드를 추가하여 편집합니다. 두 줄 w-> setWindowFlags (Qt :: Window | Qt :: FramelessWindowHint); w-> setAttribute (Qt :: WA_TranslucentBackground, true); 영화보기를 올바르게 제거하십시오. –