<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Adobe Flash Player &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/adobe-flash-player/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>on web development</description>
	<lastBuildDate>Tue, 13 Feb 2018 08:18:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>HTML5 video support. Detecting, playing and progressive enhancement!</title>
		<link>/2010/02/26/html5-video-support-detecting-playing-and-progressive-enhancement/</link>
		<comments>/2010/02/26/html5-video-support-detecting-playing-and-progressive-enhancement/#respond</comments>
		<pubDate>Fri, 26 Feb 2010 13:31:36 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[web development]]></category>
		<category><![CDATA[Adobe Flash Player]]></category>
		<category><![CDATA[Flash Video]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[HTML 5]]></category>
		<category><![CDATA[HTML element]]></category>
		<category><![CDATA[Technology/Internet]]></category>
		<category><![CDATA[Web browser]]></category>

		<guid isPermaLink="false">/?p=1154</guid>
		<description><![CDATA[HTML5 video HTML5 is mentioned as entirely new &#8220;thing&#8221; out in the web, but what it actually means is rather a collection of new, unknown for the current HTML version, features. One of the most interesting and used things in HTML5 are the support of a video in a entirely new &#8220;video&#8221; tag. Until now &#8230; <a href="/2010/02/26/html5-video-support-detecting-playing-and-progressive-enhancement/" class="more-link">Continue reading <span class="screen-reader-text">HTML5 video support. Detecting, playing and progressive enhancement!</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2010/03/04/does-firefox-play-mp4-h-264-within-the-html5-video-tag/" rel="bookmark" title="Does Firefox play mp4 h.264 within the HTML5 video tag?">Does Firefox play mp4 h.264 within the HTML5 video tag? </a></li>
<li><a href="/2010/01/23/youtube-and-vimeo-goes-html5-with-video-tag-usage-catch-them-up/" rel="bookmark" title="YouTube and Vimeo goes HTML5 with video tag usage! Catch them up!">YouTube and Vimeo goes HTML5 with video tag usage! Catch them up! </a></li>
<li><a href="/2010/03/05/video-sites-must-use-mp4-and-only-mp4/" rel="bookmark" title="Video sites must use &#8230; mp4 and only mp4!">Video sites must use &#8230; mp4 and only mp4! </a></li>
<li><a href="/2011/01/27/few-thoughts-on-web-video/" rel="bookmark" title="Few Thoughts on Web Video">Few Thoughts on Web Video </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<h2>HTML5 video</h2>
<p>HTML5 is mentioned as entirely new &#8220;thing&#8221; out in the web, but what it actually means is rather a collection of new, unknown for the current HTML version, features. One of the most interesting and used things in HTML5 are the support of a video in a entirely new &#8220;video&#8221; tag. Until now the playing of a video was either with Flash player or with Quick Time. But in both cases it relied on a third party plugins. Of course normally the question about performance was inevitable. Which is faster? But imagine we didn&#8217;t have the IMG tag? This give you the answer &#8211; using third party plugins always slows down the page, and today most of the web is based on video sharing and therefore the browsers become slower!</p>
<h2>Performance of HTML5 video tag against Flash video players</h2>
<p>As I mentioned above the performance of HTML5 video should be way better than the performance of any Flash video player. To be more precise I&#8217;ll reference an article from <a title="ajaxian" href="http://ajaxian.com/" target="_blank">ajaxian.com</a>, where the author points on his turn an interesting <a href="http://ajaxian.com/archives/i-cant-believe-its-not-flash" target="_blank">presentation</a>. Indeed the performance of HTML5 video was way, way better:</p>
<p><a href="/wp-content/uploads/2010/02/flashhtml5video.png"><img class="aligncenter size-medium wp-image-1155" title="flashhtml5video" src="/wp-content/uploads/2010/02/flashhtml5video-300x224.png" alt="" width="300" height="224" srcset="/wp-content/uploads/2010/02/flashhtml5video-300x224.png 300w, /wp-content/uploads/2010/02/flashhtml5video.png 504w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>But sometimes this doesn&#8217;t resolves all the problems. Normally with this &#8220;new&#8221; technique of putting a video into the page, come some additional issues.</p>
<p>First of all there are many codecs that the browser should support and almost always there is something &#8220;your&#8221; browser don&#8217;t support. That makes the task bigger. Now you should support more and more video file formats for the different browsers. And yet another problem is the detection of this codec support.</p>
<h2>Detection and integration</h2>
<p>Lucky enough, I found a great article and tutorial describing how to integrate HTML5 video with progressive enhancement. First of all you can check for it&#8217;s support than downgrade to Quick Time and Flash and if the client doesn&#8217;t support even that &#8211; render an image.</p>
<p>You can find the source <a href="http://camendesign.com/code/video_for_everybody" target="_blank">here.</a></p>
<p>Thanks to this technique you can fully integrate new video tag into your page. Remember that most of the clients for sure will be happy to watch video in a more user friendly manner.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2010/03/04/does-firefox-play-mp4-h-264-within-the-html5-video-tag/" rel="bookmark" title="Does Firefox play mp4 h.264 within the HTML5 video tag?">Does Firefox play mp4 h.264 within the HTML5 video tag? </a></li>
<li><a href="/2010/01/23/youtube-and-vimeo-goes-html5-with-video-tag-usage-catch-them-up/" rel="bookmark" title="YouTube and Vimeo goes HTML5 with video tag usage! Catch them up!">YouTube and Vimeo goes HTML5 with video tag usage! Catch them up! </a></li>
<li><a href="/2010/03/05/video-sites-must-use-mp4-and-only-mp4/" rel="bookmark" title="Video sites must use &#8230; mp4 and only mp4!">Video sites must use &#8230; mp4 and only mp4! </a></li>
<li><a href="/2011/01/27/few-thoughts-on-web-video/" rel="bookmark" title="Few Thoughts on Web Video">Few Thoughts on Web Video </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2010/02/26/html5-video-support-detecting-playing-and-progressive-enhancement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
