QtWebKit 中加载的嵌入式 Windows Media Player:设置音量不起作用
加载此html时(html也是此处)在 Qt 4.6 演示浏览器中,
按“Set Volume = 80”失败,但不会引发异常。
备注:
相同的 html 在 Chrome 和 Firefox 中运行良好。
在 Windows 上出现,但在 Mac 上运行良好。
Qt 4.7 Beta Demo 和 Arora 浏览器也会失败。
有什么想法吗?
when loading this html (html is also here) in the Qt 4.6 Demo Browser,
pressing "Set Volume = 80" fails without raising an exception.
Notes:
The same html works fine in Chrome and Firefox.
Happens on Windows, but works fine on Mac.
Fails also with Qt 4.7 Beta Demo, and in Arora browser.
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 QtWebKit 处理 NPAPI 插件调用时的一个错误:Int32 被视为 double。
我打了一个补丁来解决这个问题。
替换文件内容:
\Qt\2010.02.1\qt\src\3rdparty\webkit\WebCore\bridge\c\c_utility.cpp
通过这个。
It is a bug in QtWebKit's treatment of calls to NPAPI plugin: Int32 is treated as double.
I put a patch to fix this.
Replace the contents of the file:
\Qt\2010.02.1\qt\src\3rdparty\webkit\WebCore\bridge\c\c_utility.cpp
by this.