码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • Qt源码解析-源码解析-QVideoWidget播放手机视频旋转问题


    Qt源码解析 索引

    Qt源码解析-源码解析-QVideoWidget播放手机视频旋转问题

    问题描述与复现

    使用手机拍摄的视频是竖屏的,上传后,使用QVideoWidget播放,变成横屏。

    总结,可以让播放器能够旋转,即可解决此问题。

    测试准备

    视频测试地址: http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4

    问题分析

    QWidget的旋转方法两种,

    • 重载::paintEvent(QPaintEvent *e)函数,使用QTransform实现旋转。

    • 借助QGraphicsView的rotate()函数实现旋转

    QVideoWidget不支持旋转。查看setVideoOutput函数进一步获取支持。

    void QMediaPlayer::setVideoOutput(QVideoWidget *output)
    Attach a QVideoWidget video output to the media player.
    If the media player has already video output attached, it will be replaced with a new one.
    void QMediaPlayer::setVideoOutput(QGraphicsVideoItem *output)
    Attach a QGraphicsVideoItem video output to the media player.
    If the media player has already video output attached, it will be replaced with a new one.
    void QMediaPlayer::setVideoOutput(QAbstractVideoSurface *surface)
    Sets a video surface as the video output of a media player.
    If a video output has already been set on the media player the new surface will replace it.

    问题解决方法

    当尝试QWidget的旋转方法后,发现并不生效。他们是针对QWidget本身的绘制。

    setVideoOutput,采用专用的类后,可以实现旋转。关键代码如下:

    //Step 1   
    m_videoItem = new QGraphicsVideoItem;
    QGraphicsScene *scene = new QGraphicsScene(this);
    QGraphicsView *graphicsView = new QGraphicsView(scene);
    ​
    scene->addItem(m_videoItem);
    ​
    //Step 2
    m_mediaPlayer->setVideoOutput(m_videoItem);
    ​
    //Step 3    按照中心点旋转
    qreal x = m_videoItem->boundingRect().width() / 2.0;
    qreal y = m_videoItem->boundingRect().height() / 2.0;
    m_videoItem->setTransform(QTransform().translate(x, y).rotate(angle).translate(-x, -y));
    ​

    实践问题1:

    启动后报错,DirectShowPlayerService::doRender: Unresolved error code 0x80040266 (IDispatch error #102)

    安装 LAV Filters,LAV Filters download

  • 相关阅读:
    lightdb21.3-新增优化器提示no_merge
    拒绝蛮力,高效查看Linux日志文件!
    跨足泛娱乐:TikTok如何重新定义娱乐产业?
    PDF文档怎么变成链接发给别人
    C语言版——通讯录进阶(文件版本)
    用数字化管理产品的生命周期
    【Node.JS 】http的概念及作用
    考研数据结构大题整合_组一(ZYL组)
    基于arm-linux-gcc版本,音乐视频播放器mplayer
    深入理解强化学习——强化学习和有监督学习
  • 原文地址:https://blog.csdn.net/xinqingwuji/article/details/127890149
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号