错误:Qt5 视频渲染错误代码 80040218

Error: Qt5 Video render error code 80040218(错误:Qt5 视频渲染错误代码 80040218)
本文介绍了错误:Qt5 视频渲染错误代码 80040218的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Qt5 中运行使用 QWebView 制作的应用程序时,我访问了一个带有 HTML5 视频播放器的页面,但是视频不播放,qt/directshow 显示以下错误:

When running an application in Qt5 made ​​using the QWebView, I accessed a page with a video player in HTML5, but the video does not play and qt/directshow shows the following error:

DirectShowPlayerService::doRender: 未解决的错误代码 80040218DirectShowPlayerService::doRender: 未解决的错误代码 80040218

DirectShowPlayerService::doRender: Unresolved error code 80040218 DirectShowPlayerService::doRender: Unresolved error code 80040218

详情:

  • Qt5.1.1 MingW4.8 32 位
  • Windows 7 64 位

我怀疑这就是为什么我的 Windows64 位,但 *QT/MingW** 在 32 位 上运行并且可能会错过一些 DLL/LIB.

I suspect that is why my Windows is 64bit, but the *QT/MingW** runs on 32bit and maybe miss some DLL/LIB.

我该如何解决这个问题?

How can I resolve this?

谢谢.

推荐答案

错误代码比较笼统:0x80040218 VFW_E_CANNOT_RENDER找不到要渲染的过滤器组合流."典型的原因是应用程序无法解码媒体源,因为它缺少解码组件,例如此视频源的编解码器未安装/可用.

The error code is rather generic: 0x80040218 VFW_E_CANNOT_RENDER "No combination of filters could be found to render the stream." and the typical cause is that the application cannot decode media feed because it lacks decoding components, such as codec for this video feed is not installed/available.

这篇关于错误:Qt5 视频渲染错误代码 80040218的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Rising edge interrupt triggering multiple times on STM32 Nucleo(在STM32 Nucleo上多次触发上升沿中断)
How to use va_list correctly in a sequence of wrapper functions calls?(如何在一系列包装函数调用中正确使用 va_list?)
OpenGL Perspective Projection Clipping Polygon with Vertex Outside Frustum = Wrong texture mapping?(OpenGL透视投影裁剪多边形,顶点在视锥外=错误的纹理映射?)
How does one properly deserialize a byte array back into an object in C++?(如何正确地将字节数组反序列化回 C++ 中的对象?)
What free tiniest flash file system could you advice for embedded system?(您可以为嵌入式系统推荐什么免费的最小闪存文件系统?)
Volatile member variables vs. volatile object?(易失性成员变量与易失性对象?)