是否可以通过其他dll绘制pyqt小部件?
我需要创建一个可以显示网络摄像头的程序(hikvision IR ip66), 他们给我提供了ocx和dll,以及一些API文档。
一个 API 函数是这样的(在 Windows 中):
bool playVideo( HWND handle, ...)
我的代码是这样的:
widget = QWidget()
wid = widget.winId()
dll.playVideo(int(wid))
失败了。我不知道出了什么问题,有什么想法吗?或者其他更好的方法在 pyqt 中完成这项工作? (例如,使用声子?)
I need create a program which can show web cameras (hikvision IR ip66),
they provide me with ocx and dll, and some API documents.
one API function is like this(in windows):
bool playVideo( HWND handle, ...)
and my code is like this:
widget = QWidget()
wid = widget.winId()
dll.playVideo(int(wid))
and failed. I don't know what is wrong, any ideas? or other better way to do this job in pyqt? (for example, use phonon?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建 QWidget 时,您需要传递属性:
请记住,这将使所有父窗口小部件也成为本机窗口小部件,除非您指定:
When creating the QWidget you need to pass the attribute:
Keep in mind that this will make all the parent widgets also Native unless you specify: