使用 qmlviewer 运行以下 qml 脚本时,我无法播放 flash。
import QtQuick 1.0
import QtWebKit 1.0
WebView {
id: webView
width: 1280
height: 720
settings.pluginsEnabled: true
url: "http://www.youtube.com"
}
我使用的是 Qt 4.8.2,这在 Windows 7 或我的 Debian Linux 发行版上不起作用。尝试播放 youtube flash 内容时,我收到以下消息:
播放视频需要 Adobe Flash Player 或支持 HTML5 的浏览器。
我可以在 IE 8 和 Chrome 中播放这些内容。我应该使用什么插件才能让我的 WebView 识别?它不应该共享 Chrome 使用的同一个插件,因为它们都是基于 WebKit 的吗?