0

I have created one QtWebkit based app , and trying to load below mention URL, which if we open in Firefox , it will show as a HTML5 video.

http://www.youtube.com/watch?v=JYc2jP4LLGo&html5=True

In my application I am getting youtube html5 player getting loaded, but it is not displaying any video content.

I tried even in the browser sample application which comes along with the Qt SDK installtion. I am getting the same result as my app is.

below mention is the code which I wrote

QWebView *view = new QWebView();
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
view->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
view->load(QUrl("http://www.youtube.com/watch?v=cTl3U6aSd2w&html5=True"));
view->setGeometry(50,50, 800, 600);
view->show();

Machine :- both Windows 7 X64, Windows7 ultimate X86 Qt5.1 SDK

user2893899
  • 103
  • 1
  • 2
  • 8

1 Answers1

0

QT5.2 ( http://qt-project.org/downloads ) now supports <video> tag (html5).

if using QT-32bit, the system must have installed video codecs for 32bit.

K-lite codec download: http://www.codecguide.com/download_k-lite_codec_pack_full.htm

Protomen
  • 9,471
  • 9
  • 57
  • 124