<?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>Webmaster-Source &#187; video</title>
	<atom:link href="https://www.webmaster-source.com/tag/video/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>WordPress 3.6 to Have Audio/Video Support in Core</title>
		<link>https://www.webmaster-source.com/2013/04/10/wordpress-3-6-to-have-audiovideo-support-in-core/</link>
		<comments>https://www.webmaster-source.com/2013/04/10/wordpress-3-6-to-have-audiovideo-support-in-core/#comments</comments>
		<pubDate>Wed, 10 Apr 2013 10:16:01 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=5069</guid>
		<description><![CDATA[Here&#8217;s some great news from the WordPress development blog: WordPress 3.6 is going to have built-in support for audio/video playback. You will be able to upload a media file, and WordPress will handle playback with the MediaElement.js. Shortcodes will be available, as well as template tags for theming support. &#8230;there is now native support for [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-5065" alt="WordPress" src="//www.webmaster-source.com/wp-content/uploads/2013/04/wordpress-logo-type.png" width="249" height="57" />Here&#8217;s some great news from the WordPress development blog: WordPress 3.6 is going to have <a href="http://make.wordpress.org/core/2013/04/08/audio-video-support-in-core/">built-in support for audio/video playback</a>. You will be able to upload a media file, and WordPress will handle playback with the <a href="http://mediaelementjs.com/">MediaElement.js</a>. Shortcodes will be available, as well as template tags for theming support.</p>
<blockquote><p>&#8230;there is now native support for Audio and Video in core! There has been great support for embeds by way of <code>WP_Embed</code> and oEmbed providers for a while, but, if you wanted to play an MP3 from your Media Library, you had to install a plugin. Supporting audio and video in core gives bands, podcasters, vloggers, et al the ability to easily and beautifully expresses themselves through sounds and moving pictures without using an external service.</p></blockquote>
<p>This should go nicely with the coming changes to Post Formats—unless the plans have change, a UI based on <a href="http://www.webmaster-source.com/2012/02/06/crowd-favorites-wordpress-post-formats-admin-ui/">the one by Crowd Favorite</a> is going to be a part of the WordPress core, hopefully making post formats actually useful. (I&#8217;ve been using the Crowd Favorite plugin on my personal blog for awhile now, and it&#8217;s great.)</p>
<p>Another part I find interesting is the addition of embed handlers for common media files. You will be able to paste an URL to an AAC/MP3/etc. into a post and it will be seamlessly replaced by a media player, just like how oEmbed works.</p>
<p><a href="http://make.wordpress.org/core/2013/04/08/audio-video-support-in-core/">Audio / Video support in Core</a> [Make WordPress]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2013/04/10/wordpress-3-6-to-have-audiovideo-support-in-core/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Syncing Content With HTML5 Video or Audio</title>
		<link>https://www.webmaster-source.com/2011/04/11/syncing-content-with-html5-video-or-audio/</link>
		<comments>https://www.webmaster-source.com/2011/04/11/syncing-content-with-html5-video-or-audio/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 11:25:55 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3980</guid>
		<description><![CDATA[This is one of the coolest Smashing Magazine articles I have seen in awhile: Syncing Content With HTML5 Video. Using the generic HTLM5 video and audio elements and a bit of JavaScript, the timeupdate event in particular, you can synchronize script events to the media playback. The timeupdate event returns the media&#8217;s timecode, which you [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This is one of the coolest Smashing Magazine articles I have seen in awhile: <a href="http://www.smashingmagazine.com/2011/03/11/syncing-content-with-html5-video/">Syncing Content With HTML5 Video</a>.</p>
<p>Using the generic HTLM5 video and audio elements and a bit of JavaScript, the timeupdate event in particular, you can synchronize script events to the media playback. The timeupdate event returns the media&#8217;s timecode, which you can then use to fire off DOM changes.</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script&gt;
(function(){
    var v = document.getElementsByTagName('video')[0]
    var t = document.getElementById('time');
    v.addEventListener('timeupdate',function(event){
      t.innerHTML = v.currentTime;
    },false);
  })();
&lt;/script&gt;
</pre>
<p>There are so many applications where this could be useful. You could supply show notes synchronized to a podcast, for instance, or additional information to supplement a video tutorial.</p>
<p><a href="http://www.smashingmagazine.com/2011/03/11/syncing-content-with-html5-video/">Syncing Content With HTML5 Video</a> [Smashing Magazine]</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/04/11/syncing-content-with-html5-video-or-audio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaElement.js WordPress Plugin</title>
		<link>https://www.webmaster-source.com/2010/12/03/mediaelement-js-wordpress-plugin/</link>
		<comments>https://www.webmaster-source.com/2010/12/03/mediaelement-js-wordpress-plugin/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 11:04:02 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3735</guid>
		<description><![CDATA[MediaElement.js is a nifty jQuery plugin that allows you to use the HTML5 video and audio elements while still supplying a Flash or Silverlight backup for compatibility. There&#8217;s now a convenient MediaElement.js WordPress plugin that gives you easy-to-use shortcodes for use in the post editor. To embed a video when you have the plugin installed, [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.webmaster-source.com/2010/08/02/media-element-js-html5-video-player-with-flash-backup/">MediaElement.js</a> is a nifty jQuery plugin that allows you to use the HTML5 video and audio elements while still supplying a Flash or Silverlight backup for compatibility.</p>
<p>There&#8217;s now a convenient <a href="http://wordpress.org/extend/plugins/media-element-html5-video-and-audio-player/">MediaElement.js WordPress plugin</a> that gives you easy-to-use shortcodes for use in the post editor. To embed a video when you have the plugin installed, all you have to do is put this in your post:</p>
<pre class="brush: plain; title: ; notranslate">[video src=&quot;http://example.org/video.mp4&quot; width=&quot;640&quot; height=&quot;480&quot;]</pre>
<p>The MPEG 4 video will be served-up to supporting browsers, and others get the Flash backup. Supported formats also include WebM, MP3 and Ogg Theora. Multiple formats can be specified in one shortcode, if you have encoded multiple versions. You can serve Safari and Mobile Safari an MP4 version, Firefox an Ogg Theora, and Chrome the little-supported WebM.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/12/03/mediaelement-js-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaElement.js — HTML5 Video Player With Flash Backup</title>
		<link>https://www.webmaster-source.com/2010/08/02/media-element-js-html5-video-player-with-flash-backup/</link>
		<comments>https://www.webmaster-source.com/2010/08/02/media-element-js-html5-video-player-with-flash-backup/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 11:48:21 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[(x)html]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3493</guid>
		<description><![CDATA[Many modern web browsers have early support for the &#60;video&#62; and &#60;audio&#62; elements in the HTML5 spec. Unfortunately, their implementation varies depending on the ideals of the various browser developers. Safari expects video to be encoded in the high-quality H.264 codec, other browsers prefer Ogg Theora. Google is trying to push their own freely-licensed VP8 [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Many modern web browsers have early support for the &lt;video&gt; and &lt;audio&gt; elements in the HTML5 spec. Unfortunately, their implementation varies depending on the ideals of the various browser developers. Safari expects video to be encoded in the high-quality H.264 codec, other browsers prefer Ogg Theora. Google is trying to push their own freely-licensed VP8 codec, which Mozilla is showing signs of adopting. Then there&#8217;s Internet Explorer, which doesn&#8217;t support the &lt;video&gt; element at all.</p>
<p>Thankfully, there&#8217;s a way to fairly easily support everything. You can offer HTML5 video in one or more formats and fall back on Silverlight or Flash if necessary.</p>
<p><a href="http://mediaelementjs.com/">MediaElement.js</a> allows you to do that with a little bit of jQuery voodoo. After including all of the required files, you can serve-up an H.264 video for Safari and iPhone/iPad users like so:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;video src=&quot;myfile.mp4&quot; type=&quot;video/mp4&quot; width=&quot;640&quot; height=&quot;360&quot;&gt;&lt;/video&gt;
&lt;script&gt;
jQuery(document).ready(function($) {
$('video').mediaelementplayer();
});
&lt;/script&gt;
</pre>
<p>There is also a way to specify more than one video type in the &lt;video&gt; element, if you have re-encoded it into more than one codec:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;video width=&quot;640&quot; height=&quot;360&quot;&gt;
&lt;source src=&quot;myfile.mp4&quot; type=&quot;video/mp4&quot; &gt;
&lt;source src=&quot;myfile.ogg&quot; type=&quot;video/ogg&quot; &gt;
&lt;source src=&quot;myfile.webm&quot; type=&quot;video/webm&quot; &gt;
&lt;/video&gt;
</pre>
<p>You will want to <a href="http://mediaelementjs.com/">check it out</a> if you&#8217;re interested in cross-browser compatible web video.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/08/02/media-element-js-html5-video-player-with-flash-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camtasia for Mac</title>
		<link>https://www.webmaster-source.com/2009/08/27/camtasia-for-mac/</link>
		<comments>https://www.webmaster-source.com/2009/08/27/camtasia-for-mac/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 11:18:53 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[screencasting]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=2523</guid>
		<description><![CDATA[TechSmith has finally released a Mac screencasting application. Camtasia for Mac is not a port of the popular Camtasia Studio software, but an entirely new application that has many of the same features, but has its fair share of differences. From the feature set, it seems like its placing itself as a competitor to ScreenFlow. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>TechSmith has finally released a Mac screencasting application. <a href="http://www.techsmith.com/camtasiamac/">Camtasia for Mac</a> is not a port of the popular Camtasia Studio software, but an entirely new application that has many of the same features, but has its fair share of differences.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-2524 imgborder" title="Camtasia for Mac" src="//www.webmaster-source.com/wp-content/uploads/camtasia-for-mac.jpg" alt="Camtasia for Mac" width="530" height="223" /></p>
<p>From the <a href="http://www.techsmith.com/camtasiamac/product-tour/">feature set</a>, it seems like its placing itself as a competitor to <a href="http://www.telestream.net/screen-flow/overview.htm">ScreenFlow</a>. The interface looks good, and the SmartFocus feature sounds intriguing.</p>
<p>The software sells for $99 from Camtasia at the present, though it will increase to $149 after December 31.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/08/27/camtasia-for-mac/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress.tv</title>
		<link>https://www.webmaster-source.com/2009/01/23/wordpresstv/</link>
		<comments>https://www.webmaster-source.com/2009/01/23/wordpresstv/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:05:52 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=1751</guid>
		<description><![CDATA[Automattic&#8217;s latest site, WordPress.tv is quite interesting. The site, described as &#8220;Your Visual Resource for All Things WordPress,&#8221; is an attempt at putting together a central place to find quality WordPress-related videos. So far it&#8217;s mainly short beginner-oriented tutorials and clips from WordCamp, though it will eventually have all the videos they can round-up. Judging [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Automattic&#8217;s latest site, <a href="http://wordpress.tv">WordPress.tv</a> is quite interesting. The site, described as &#8220;Your Visual Resource for All Things WordPress,&#8221; is an attempt at putting together a central place to find quality WordPress-related videos.</p>
<p>So far it&#8217;s mainly short beginner-oriented tutorials and clips from WordCamp, though it will eventually have all the videos they can round-up. Judging by what they&#8217;ve done so far, they will be adding existing videos from around the web, by using Vimeo/YouTube/etc embed code snippets, in addition to their own clips.</p>
<p>On the design end, it looks pretty good; it&#8217;s kind of a combination of the WordPress.org design and <a href="http://hulu.com">Hulu,</a> with a dash of YouTube. The videos are sized nicely, plenty of information to the right, and threaded Gravatar-equipped comments underneath. It&#8217;s very clean, and (big surprise) it&#8217;s all powered by WordPress.</p>
<p>The site looks promising. I will definitely be checking in now and again to see how it turns out.</p>
<p><object width="400" height="224" data="http://v.wordpress.com/DEesBAlR" type="application/x-shockwave-flash"><param name="src" value="http://v.wordpress.com/DEesBAlR" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/01/23/wordpresstv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-05-20 14:59:22 by W3 Total Cache
-->