作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了自己的视频接收器,继承自 QVideoSink
在 Qt 6 中。我想在 QML 端显示这个接收器的内容。我该怎么做?VideoOutput
QML类型有videoSink
属性,但它是只读的..
最佳答案
诸如 VideoOutput 和 QVideoWidget 之类的输出元素有一个 QVideoSink,因此您不应创建一个而是重写该 QVideoSink:
#ifndef PRODUCER_H
#define PRODUCER_H
#include <QObject>
#include <QPointer>
#include <QVideoSink>
#include <QQmlEngine>
#include <QTimer>
class Producer : public QObject
{
Q_OBJECT
QML_ELEMENT
Q_PROPERTY(QVideoSink* videoSink READ videoSink WRITE setVideoSink NOTIFY videoSinkChanged)
public:
Producer(QObject *parent=nullptr);
QVideoSink *videoSink() const;
void setVideoSink(QVideoSink *newVideoSink);
Q_INVOKABLE void start();
signals:
void videoSinkChanged();
private:
QPointer<QVideoSink> m_videoSink;
void handleTimeout();
QTimer m_timer;
};
#endif // PRODUCER_H
#include "producer.h"
#include <QImage>
#include <QPainter>
#include <QSize>
#include <QVideoFrame>
#include <QRandomGenerator>
#include <QDateTime>
Producer::Producer(QObject *parent):QObject(parent)
{
m_timer.setInterval(500);
connect(&m_timer, &QTimer::timeout, this, &Producer::handleTimeout);
}
QVideoSink *Producer::videoSink() const
{
return m_videoSink.get();
}
void Producer::setVideoSink(QVideoSink *newVideoSink)
{
if (m_videoSink == newVideoSink)
return;
m_videoSink = newVideoSink;
emit videoSinkChanged();
}
void Producer::start()
{
m_timer.start();
handleTimeout();
}
void Producer::handleTimeout()
{
if(!m_videoSink)
return;
QVideoFrame video_frame(QVideoFrameFormat(QSize(640, 480),QVideoFrameFormat::Format_BGRA8888));
if(!video_frame.isValid() || !video_frame.map(QVideoFrame::WriteOnly)){
qWarning() << "QVideoFrame is not valid or not writable";
return;
}
QImage::Format image_format = QVideoFrameFormat::imageFormatFromPixelFormat(video_frame.pixelFormat());
if(image_format == QImage::Format_Invalid){
qWarning() << "It is not possible to obtain image format from the pixel format of the videoframe";
return;
}
int plane = 0;
QImage image(video_frame.bits(plane), video_frame.width(),video_frame.height(), image_format);
image.fill(QColor::fromRgb(QRandomGenerator::global()->generate()));
QPainter painter(&image);
painter.drawText(image.rect(), Qt::AlignCenter, QDateTime::currentDateTime().toString());
painter.end();
video_frame.unmap();
m_videoSink->setVideoFrame(video_frame);
}
#include <QGuiApplication>
#include <QQmlApplicationEngine>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
const QUrl url(QStringLiteral("qrc:/main.qml"));
QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
&app, [url](QObject *obj, const QUrl &objUrl) {
if (!obj && url == objUrl)
QCoreApplication::exit(-1);
}, Qt::QueuedConnection);
engine.load(url);
return app.exec();
}
import QtQuick
import QtQuick.Window
import QtMultimedia
import com.eyllanesc.multimedia
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
Producer{
id: producer
videoSink: videoOutput.videoSink
}
VideoOutput{
id: videoOutput
anchors.fill: parent
}
Component.onCompleted: producer.start()
}
关于qt - 如何在Qt6的QML中使用QVideoSink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69432427/
我是一名优秀的程序员,十分优秀!