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
基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- 常量变量在标题中不起作用 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 在 C++ 中计算滚动/移动平均值 2021-01-01
