Use webengine video and audio codecs(使用 webengine 视频和音频编解码器)
问题描述
对于我的 PyQt5 项目,我使用的是 QWebEngineView
,但某些视频,例如 .mp4
视频无法播放.我可以使用 pip
安装编解码器,或者通过 QApplication()
或类似的方式传递某个参数来解决此问题吗?
For my PyQt5 project, I am using the QWebEngineView
, but certain videos, such as .mp4
videos won't play. Can I install the codecs with pip
, or pass a certain argument through QApplication()
or something similar in order to fix this problem?
我是通过pip
安装PyQt5的,所以我没有C:Qt...
文件,只有PyQt5
, pyqt5_tools
文件夹在 AppdataLocalProgramsPythonPython37Libsite-packages
.
I installed PyQt5 through pip
, so I don't have the C:Qt...
files, only the PyQt5
, pyqt5_tools
folders in AppdataLocalProgramsPythonPython37Libsite-packages
.
我正在使用 Python 3.7.2
和 PyQt5.11
推荐答案
pypi提供的pyqtwebengine没有开启use_proprietary_codecs
标志,所以无法播放.mp4.
The pyqtwebengine provided by pypi does not enable the use_proprietary_codecs
flag so you cannot play the .mp4.
如果你想获得一个播放 mp4 的 pyqtwebengine,你必须按照以下步骤操作:
If you want to get a pyqtwebengine that plays mp4 you must follow these steps:
您必须使用
WEBENGINE_CONFIG += use_proprietary_codecs
标志编译 Qt 以启用播放 mp4 所需的编解码器(Qt WebEngine功能:音视频编解码器)
You must compile Qt with the
WEBENGINE_CONFIG += use_proprietary_codecs
flag to enable the codecs needed to play mp4(Qt WebEngine Features: Audio and Video Codecs)
然后使用那个Qt你必须编译pyqtwebengine.
Then using that Qt you must compile pyqtwebengine.
这篇关于使用 webengine 视频和音频编解码器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 webengine 视频和音频编解码器
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 筛选NumPy数组 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01