Error: Qt5 Video render error code 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 位
我怀疑这就是为什么我的 Windows 是 64 位,但 *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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误:Qt5 视频渲染错误代码 80040218
基础教程推荐
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01