Qml 中实现对原始视频图像格式( YUV / RGB )支持

2024-06-03 20:58

本文主要是介绍Qml 中实现对原始视频图像格式( YUV / RGB )支持,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

【写在前面】

        之前一直在学着视频相关的知识,然后工作也正好是监控相关的。

        并且界面部分用 Qml 开发的 ( 相当舒服,是我擅长且喜欢的 )。

        一开始,我觉得相当容易,只是显示解码好的图像而已,没什么难度。

        记得前面写过一篇在 Qml 中使用 QImage:Qml中实现多视图,多图像源(QImage / QPixmap)_梦起丶的博客-CSDN博客。

        然后通过使用 QQmlImageProvider 来对 QImage / QPixmap / QQuickTextureFactory 实现支持。

        实际上,QImage 支持绝大多数 RGB 格式,所以即便是 YUV 格式,也可以通过转换为 RGB 来实现,然而转换所带来的性能损失也是必须考虑的。

        另一方面, QQuickTextureFactory 是其中最强大的,但遗憾的是没有任何相关的资料 ( 就很烦,因为很明显,这个就是我所需要的,以后会尝试 )。

        并且,使用 QQmlImageProvider 导致底层设计比较丑陋,所以我还是舍弃了这个方法。

        最终,我的方案是使用 Qt MutiMedia 模块中的 QAbstractVideoSurface VideoOutput 来完成。

        本篇主要内容:

        1、QML 中的 VideoOutput: source;

        2、如何使用 YUV 数据创建 QVideoFrame

        3、在 VideoOutput 上呈现视频帧;


【正文开始】

        先来看看效果图:

        其中,视频源来自一张 YUV 图像 ( 这里是 NV12 ),然后定时变化来模拟视频效果:

    //读入一张yuv图像QFile file("./test.yuv");file.open(QIODevice::ReadOnly);QByteArray data = file.readAll();d->m_testData.resize(data.size());memcpy(d->m_testData.data(), data.constData(), size_t(data.size()));file.close();

        首先,说明一下 VideoOutput: source 属性

source: Variant

此属性保存提供视频帧( 例如 MediaPlayer 或 Camera )的源项目。

如果要扩展自己的 C++ 类以与 VideoOutput 互操作,则可以为基于 QObject 的类提供 mediaObject 属性,该属性公开具有可用 QVideoRendererControl 的 QMediaObject 派生类

也可以为基于 QObject 的类提供可写 videoSurface 属性可以接受基于 QAbstractVideoSurface 的类,并且可以遵循正确的协议将 QVideoFrame 传递给它

        可以看出,在 VideoOutput 中,想要使用自己的视频源,有两种方法:

        1、提供 QMediaObject 派生类属性,该属性需要具有可用的 QVideoRenderControl ,类似于下面:

class MyMedia : QObject {

public:

      QMediaObject *mediaObject();

};

        其中,Qt 本身已经实现了一些 QMediaObject 派生类,例如:QAudioDecoder, QCamera, QMediaPlayer, 和 QRadioTuner,因此,这些类能够直接提供给 VideoOutput: source

        2、基于 QObject 的类提供可写 videoSurface 属性,可以接受基于 QAbstractVideoSurface 的类,然后传递自己的 QVideoFrame 即可,这也正是本篇所使用的方法:

#ifndef VIDEOFRAMEPROVIDER_H
#define VIDEOFRAMEPROVIDER_H#include <QObject>
#include <QAbstractVideoSurface>
#include <QVideoSurfaceFormat>QT_FORWARD_DECLARE_CLASS(VideoFrameProviderPrivate);class VideoFrameProvider : public QObject
{Q_OBJECTQ_PROPERTY(QAbstractVideoSurface *videoSurface READ videoSurface WRITE setVideoSurface)Q_PROPERTY(QString videoUrl READ videoUrl WRITE setVideoUrl NOTIFY videoUrlChanged)public:VideoFrameProvider(QObject *parent = nullptr);~VideoFrameProvider();QAbstractVideoSurface *videoSurface();void setVideoSurface(QAbstractVideoSurface *surface);QString videoUrl() const;void setVideoUrl(const QString &url);void setFormat(int width, int heigth, QVideoFrame::PixelFormat pixFormat);signals:/*** @brief newVideoFrame 有新的视频帧* @param frame 视频帧*/void newVideoFrame(const QVideoFrame &frame);void videoUrlChanged();public slots:void onNewVideoFrameReceived(const QVideoFrame &frame);private:VideoFrameProviderPrivate *d = nullptr;
};#endif // VIDEOFRAMEPROVIDER_H

        全部实现如下: 

#include "videoframeprovider.h"#include <QFile>
#include <QFileInfo>
#include <QSharedPointer>
#include <QTimer>class VideoFrameProviderPrivate
{
public:QAbstractVideoSurface *m_surface = nullptr;QVideoSurfaceFormat m_format;QString m_videoUrl;QSharedPointer<QVideoFrame> m_frame = nullptr;/*** 以下代码仅供示例使用* 实际上,此处应放你的视频源,它可以来自你自己的解码器*/QVector<char> m_testData;QTimer *m_testTimer = nullptr;
};VideoFrameProvider::VideoFrameProvider(QObject *parent): QObject(parent)
{d = new VideoFrameProviderPrivate;int width = 1280;int height = 720;int size = width * height * 3 / 2;setFormat(width, height, QVideoFrame::Format_NV12);d->m_frame.reset(new QVideoFrame(size, QSize(width, height), width, QVideoFrame::Format_NV12));d->m_testTimer = new QTimer(this);//读入一张yuv图像QFile file("./test.yuv");file.open(QIODevice::ReadOnly);QByteArray data = file.readAll();d->m_testData.resize(data.size());memcpy(d->m_testData.data(), data.constData(), size_t(data.size()));file.close();connect(d->m_testTimer, &QTimer::timeout, this, [=]{static int count = 0;//简单变化一下,模拟视频帧if (++count & 0x1) {for (auto &it : d->m_testData) {it *= 0.5;}} else {for (auto &it : d->m_testData) {it *= 2.0;}}if (d->m_frame->map(QAbstractVideoBuffer::WriteOnly)) {memcpy(d->m_frame->bits(), d->m_testData.data(), size_t(d->m_testData.size()));d->m_frame->unmap();emit newVideoFrame(*d->m_frame.get());};});connect(this, &VideoFrameProvider::newVideoFrame, this, &VideoFrameProvider::onNewVideoFrameReceived);d->m_testTimer->start(200);
}VideoFrameProvider::~VideoFrameProvider()
{if (d) delete d;
}QAbstractVideoSurface *VideoFrameProvider::videoSurface()
{return d->m_surface;
}void VideoFrameProvider::setVideoSurface(QAbstractVideoSurface *surface)
{if (d->m_surface && d->m_surface != surface && d->m_surface->isActive()) {d->m_surface->stop();}d->m_surface = surface;if (d->m_surface && d->m_format.isValid()) {d->m_format = d->m_surface->nearestFormat(d->m_format);d->m_surface->start(d->m_format);}
}QString VideoFrameProvider::videoUrl() const
{return d->m_videoUrl;
}void VideoFrameProvider::setVideoUrl(const QString &url)
{if (d->m_videoUrl != url) {d->m_videoUrl = url;emit videoUrlChanged();}
}void VideoFrameProvider::setFormat(int width, int heigth, QVideoFrame::PixelFormat pixFormat)
{QVideoSurfaceFormat format(QSize(width, heigth), pixFormat);d->m_format = format;if (d->m_surface) {if (d->m_surface->isActive()) {d->m_surface->stop();}d->m_format = d->m_surface->nearestFormat(format);d->m_surface->start(d->m_format);}
}void VideoFrameProvider::onNewVideoFrameReceived(const QVideoFrame &frame)
{if (d->m_surface)d->m_surface->present(frame);
}

        实际上,关键的地方在于能够提供正确的 QVideoFrame,并设置正确的 Format

        而 QVideoFrame 支持的格式相当多,例如 NV12NV21YUYV 等等,然后使用 QAbstractVideoSurface::present(const QVideoFrame &frame) 传递给 VideoOutput 即可呈现。

        另外需要注意的一点的是 QVideoFrame 的数据填充方式:

    if (d->m_frame->map(QAbstractVideoBuffer::WriteOnly)) {memcpy(d->m_frame->bits(), d->m_testData.data(), size_t(d->m_testData.size()));d->m_frame->unmap();emit newVideoFrame(*d->m_frame.get());};

        最后的使用就相当简单了:

import QtQuick 2.12
import QtQuick.Window 2.12
import QtMultimedia 5.8
import an.video 1.0Window {visible: truewidth: 640height: 480title: qsTr("VideoOutput")VideoFrameProvider {id: providervideoUrl: "rtsp://xxx.xxx.xxx/channel=1"}VideoOutput {anchors.fill: parentsource: provider}
}

        videoUrl 则是为了实现多路流视频的播放,这样在 QML 中相当简单和直观。


【结语】

        呼~总算写完了,我的 VideoFrameProvider 实现已经非常不错了。

        当然,如果要自己使用的话,只需把提供数据的部分改下即可。

        最后,附上项目链接(多多star呀..⭐_⭐):

        CSDN的:Qml中实现对原始视频图像格式(YUV/RGB)支持_VideoFrameProvider-C++文档类资源-CSDN下载

        Github的:GitHub - mengps/QmlControls: Qt / Qml 控件

这篇关于Qml 中实现对原始视频图像格式( YUV / RGB )支持的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1028091

相关文章

SpringBoot集成redisson实现延时队列教程

《SpringBoot集成redisson实现延时队列教程》文章介绍了使用Redisson实现延迟队列的完整步骤,包括依赖导入、Redis配置、工具类封装、业务枚举定义、执行器实现、Bean创建、消费... 目录1、先给项目导入Redisson依赖2、配置redis3、创建 RedissonConfig 配

Python的Darts库实现时间序列预测

《Python的Darts库实现时间序列预测》Darts一个集统计、机器学习与深度学习模型于一体的Python时间序列预测库,本文主要介绍了Python的Darts库实现时间序列预测,感兴趣的可以了解... 目录目录一、什么是 Darts?二、安装与基本配置安装 Darts导入基础模块三、时间序列数据结构与

Python使用FastAPI实现大文件分片上传与断点续传功能

《Python使用FastAPI实现大文件分片上传与断点续传功能》大文件直传常遇到超时、网络抖动失败、失败后只能重传的问题,分片上传+断点续传可以把大文件拆成若干小块逐个上传,并在中断后从已完成分片继... 目录一、接口设计二、服务端实现(FastAPI)2.1 运行环境2.2 目录结构建议2.3 serv

C#实现千万数据秒级导入的代码

《C#实现千万数据秒级导入的代码》在实际开发中excel导入很常见,现代社会中很容易遇到大数据处理业务,所以本文我就给大家分享一下千万数据秒级导入怎么实现,文中有详细的代码示例供大家参考,需要的朋友可... 目录前言一、数据存储二、处理逻辑优化前代码处理逻辑优化后的代码总结前言在实际开发中excel导入很

SpringBoot+RustFS 实现文件切片极速上传的实例代码

《SpringBoot+RustFS实现文件切片极速上传的实例代码》本文介绍利用SpringBoot和RustFS构建高性能文件切片上传系统,实现大文件秒传、断点续传和分片上传等功能,具有一定的参考... 目录一、为什么选择 RustFS + SpringBoot?二、环境准备与部署2.1 安装 RustF

Nginx部署HTTP/3的实现步骤

《Nginx部署HTTP/3的实现步骤》本文介绍了在Nginx中部署HTTP/3的详细步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录前提条件第一步:安装必要的依赖库第二步:获取并构建 BoringSSL第三步:获取 Nginx

MyBatis Plus实现时间字段自动填充的完整方案

《MyBatisPlus实现时间字段自动填充的完整方案》在日常开发中,我们经常需要记录数据的创建时间和更新时间,传统的做法是在每次插入或更新操作时手动设置这些时间字段,这种方式不仅繁琐,还容易遗漏,... 目录前言解决目标技术栈实现步骤1. 实体类注解配置2. 创建元数据处理器3. 服务层代码优化填充机制详

Python实现Excel批量样式修改器(附完整代码)

《Python实现Excel批量样式修改器(附完整代码)》这篇文章主要为大家详细介绍了如何使用Python实现一个Excel批量样式修改器,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一... 目录前言功能特性核心功能界面特性系统要求安装说明使用指南基本操作流程高级功能技术实现核心技术栈关键函

Java实现字节字符转bcd编码

《Java实现字节字符转bcd编码》BCD是一种将十进制数字编码为二进制的表示方式,常用于数字显示和存储,本文将介绍如何在Java中实现字节字符转BCD码的过程,需要的小伙伴可以了解下... 目录前言BCD码是什么Java实现字节转bcd编码方法补充总结前言BCD码(Binary-Coded Decima

SpringBoot全局域名替换的实现

《SpringBoot全局域名替换的实现》本文主要介绍了SpringBoot全局域名替换的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录 项目结构⚙️ 配置文件application.yml️ 配置类AppProperties.Ja