<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[QWebKit and Video Cross Platform]]></title><description><![CDATA[<p dir="auto">Hi there,</p>
<p dir="auto">i was just developing a project with QWebKit, it needs the html 5 video tag.</p>
<p dir="auto">I was developing on Linux and it worked (although i never actually played a video, but the video player controls show up).</p>
<p dir="auto">Now compiling first time on Windows (Qt 4.8/QtCreator 2.4.1), there is no support for the video tag... I thought QT was cross platform.</p>
<p dir="auto">Is there a way to get the video tag on Windows to run?</p>
<p dir="auto">Anyone tried it on mac yet?</p>
]]></description><link>https://forum.qt.io/topic/13737/qwebkit-and-video-cross-platform</link><generator>RSS for Node</generator><lastBuildDate>Mon, 21 Sep 2026 07:18:06 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/13737.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 04 Feb 2012 06:55:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Tue, 02 Apr 2013 13:33:26 GMT]]></title><description><![CDATA[<p dir="auto">Hat down, Robin. So much work around it ... it should be really simple.</p>
]]></description><link>https://forum.qt.io/post/151125</link><guid isPermaLink="true">https://forum.qt.io/post/151125</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Tue, 02 Apr 2013 13:33:26 GMT</pubDate></item><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Mon, 01 Apr 2013 22:11:24 GMT]]></title><description><![CDATA[<p dir="auto">[quote author="RobinD42" date="1364852920"]I've written a blog post about how I've solved this issue for our project.  It involves building Qt + qt-mobility, and also a bug fix in qt-mobility.  See <a href="http://blog.enthought.com/open-source/fun-with-qtwebkit-html5-video/%5B/quote%5D" target="_blank" rel="noopener noreferrer nofollow ugc">http://blog.enthought.com/open-source/fun-with-qtwebkit-html5-video/[/quote]</a></p>
<p dir="auto">Great, thank you for sharing the solution. Why don't you create a brief article at "Qt Project's wiki":<a href="http://qt-project.org/wiki/" target="_blank" rel="noopener noreferrer nofollow ugc">http://qt-project.org/wiki/</a> based on your blog post?</p>
]]></description><link>https://forum.qt.io/post/151123</link><guid isPermaLink="true">https://forum.qt.io/post/151123</guid><dc:creator><![CDATA[leon.anavi]]></dc:creator><pubDate>Mon, 01 Apr 2013 22:11:24 GMT</pubDate></item><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Mon, 01 Apr 2013 21:48:40 GMT]]></title><description><![CDATA[<p dir="auto">I've written a blog post about how I've solved this issue for our project.  It involves building Qt + qt-mobility, and also a bug fix in qt-mobility.  See <a href="http://blog.enthought.com/open-source/fun-with-qtwebkit-html5-video/" target="_blank" rel="noopener noreferrer nofollow ugc">http://blog.enthought.com/open-source/fun-with-qtwebkit-html5-video/</a></p>
]]></description><link>https://forum.qt.io/post/151122</link><guid isPermaLink="true">https://forum.qt.io/post/151122</guid><dc:creator><![CDATA[RobinD42]]></dc:creator><pubDate>Mon, 01 Apr 2013 21:48:40 GMT</pubDate></item><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Wed, 02 Jan 2013 17:04:39 GMT]]></title><description><![CDATA[<p dir="auto">Did anything change in regards to this? I tried html5 video tag by creating new html5 application with default html page that I modified by adding video tag. It works on Mac but not on Windows. Anyone? Any workarounds for Windows?</p>
<p dir="auto">@&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd</a>"&gt;<br />
&lt;html  xml:lang="en"&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;<br />
&lt;style type="text/css"&gt;<br />
body { margin: 0; font-size: 2em; background-color: white; }<br />
h1 { text-align: center; color: red; }<br />
h1 + h1 { color: green; }<br />
h1:last-child { color: blue; }<br />
#quit { background-color: gray; color: white; font-weight: bold; display: block; text-align: right; }<br />
&lt;/style&gt;<br />
[removed]<br />
var counter = 0;<br />
function toggleElement()<br />
{<br />
var elements = document.getElementsByTagName('h1');<br />
for (var i = 0; i &lt; elements.length; ++i)<br />
elements[i].style.display = (counter % elements.length) == i ? '' : 'none';<br />
counter++;<br />
setTimeout('toggleElement()', 1000);<br />
}<br />
window.onload = function()<br />
{<br />
document.getElementById("quit").onmousedown = function()<br />
{<br />
Qt.quit();<br />
};<br />
toggleElement();<br />
}<br />
[removed]<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;a id="quit"&gt;X&lt;/a&gt;<br />
&lt;h1&gt;Hello&lt;/h1&gt;<br />
&lt;h1&gt;HTML5&lt;/h1&gt;<br />
&lt;h1&gt;World&lt;/h1&gt;</p>
<pre><code>    &amp;lt;video width="320" height="240" controls&amp;gt;
      &lt;source src="http://www.w3schools.com/html/movie.mp4" type="video/mp4"&gt;
      &amp;lt;!--source src="http://www.w3schools.com/html/movie.ogg" type="video/ogg"&gt;
      &lt;source src="twnactive.mov" type="video/quicktime"--&amp;gt;
    Your browser does not support the video tag.
    &amp;lt;/video&amp;gt;

&amp;lt;/body&amp;gt;
</code></pre>
<p dir="auto">&lt;/html&gt;<br />
@</p>
]]></description><link>https://forum.qt.io/post/150893</link><guid isPermaLink="true">https://forum.qt.io/post/150893</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Wed, 02 Jan 2013 17:04:39 GMT</pubDate></item><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Sat, 04 Feb 2012 10:04:09 GMT]]></title><description><![CDATA[<p dir="auto">[quote author="hellagot" date="1328347988"]Hm, this site says QtWebKit 2.2 is part of Qt 4.8, which i have installed. Does Qt deliver its own WebKit or does it use some system wide installation (which i don't remind installing).[/quote]</p>
<p dir="auto">I made a quick Google research and it seems that other people are experiencing the same issues with video like you but I haven't seen a solution yet :( :<br />
"QtWebKit 2.2 (from Qt 4.8 RC1) supports less than QtWebKit 2.0.2 (from Qt 4.7.4), test on <a href="http://html5test.com" target="_blank" rel="noopener noreferrer nofollow ugc">html5test.com</a>":<a href="http://developer.qt.nokia.com/forums/viewthread/11865" target="_blank" rel="noopener noreferrer nofollow ugc">http://developer.qt.nokia.com/forums/viewthread/11865</a><br />
"QtWebKit playing HTML5 video without installing flash player":<a href="http://stackoverflow.com/questions/8650119/qtwebkit-playing-html5-video-without-installing-flash-player" target="_blank" rel="noopener noreferrer nofollow ugc">http://stackoverflow.com/questions/8650119/qtwebkit-playing-html5-video-without-installing-flash-player</a></p>
]]></description><link>https://forum.qt.io/post/128061</link><guid isPermaLink="true">https://forum.qt.io/post/128061</guid><dc:creator><![CDATA[leon.anavi]]></dc:creator><pubDate>Sat, 04 Feb 2012 10:04:09 GMT</pubDate></item><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Sat, 04 Feb 2012 09:33:08 GMT]]></title><description><![CDATA[<p dir="auto">Hm, this site says QtWebKit 2.2 is part of Qt 4.8, which i have installed. Does Qt deliver its own WebKit or does it use some system wide installation (which i don't remind installing).</p>
]]></description><link>https://forum.qt.io/post/128057</link><guid isPermaLink="true">https://forum.qt.io/post/128057</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Sat, 04 Feb 2012 09:33:08 GMT</pubDate></item><item><title><![CDATA[Reply to QWebKit and Video Cross Platform on Sat, 04 Feb 2012 09:03:13 GMT]]></title><description><![CDATA[<p dir="auto">Check which version of the Web Kit are you using on Windows. According to the official announcement I think that the video tag may be working on "web kit version 2.2":<a href="http://trac.webkit.org/wiki/QtWebKitFeatures22" target="_blank" rel="noopener noreferrer nofollow ugc">http://trac.webkit.org/wiki/QtWebKitFeatures22</a></p>
]]></description><link>https://forum.qt.io/post/128055</link><guid isPermaLink="true">https://forum.qt.io/post/128055</guid><dc:creator><![CDATA[leon.anavi]]></dc:creator><pubDate>Sat, 04 Feb 2012 09:03:13 GMT</pubDate></item></channel></rss>