<?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; Audio</title>
	<atom:link href="https://www.webmaster-source.com/tag/audio/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>3 Flash Web Players For Audio</title>
		<link>https://www.webmaster-source.com/2008/09/15/3-flash-web-players-for-audio/</link>
		<comments>https://www.webmaster-source.com/2008/09/15/3-flash-web-players-for-audio/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 10:46:13 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Software & Scripts]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[player]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=819</guid>
		<description><![CDATA[Do you produce podcasts, or otherwise make use of audio files on your website? Here are a few Flash players to enable your listeners to easily stream audio from your server. JW FLV Media Player Jeroenwijering&#8217;s player is one of the wider-known ones, and one of the first. It plays MP3s, AACs, H264 video, FLV [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Do you produce podcasts, or otherwise make use of audio files on your website? Here are a few Flash players to enable your listeners to easily stream audio from your server.</p>
<h3>JW FLV Media Player</h3>
<p><img class="alignnone" title="JW Player" src="http://i36.tinypic.com/2agr9t4.jpg" alt="" width="300" height="20" /></p>
<p>Jeroenwijering&#8217;s player is one of the wider-known ones, and one of the first. It plays MP3s, AACs, H264 video, FLV video, and it can even stream video from YouTube. It&#8217;s very customizable too. <a href="http://jeroenwijering.com/?item=JW_FLV_Media_Player">Get it here</a>.</p>
<h3>1 Pixel Out Audio Player</h3>
<p><img class="alignnone" title="1 Pixel Out Player" src="http://i33.tinypic.com/72bv3s.jpg" alt="" width="200" height="24" /></p>
<p>This one is very popular among WordPress users. It&#8217;s available as a WordPress plugin or as a standalone solution. It&#8217;s very compact and simple. <a href="http://www.1pixelout.net/code/audio-player-wordpress-plugin/">Get it here</a>.</p>
<h3>Dewplayer</h3>
<p><img class="alignnone" title="Dewplayer" src="http://i34.tinypic.com/11jugbo.jpg" alt="" width="204" height="23" /></p>
<p>Dewplayer is the &#8220;new guy.&#8221; It&#8217;s lightweight and compact. It comes in three versions with varying amounts of buttons. <a href="http://www.alsacreations.fr/dewplayer-en">Get it here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/09/15/3-flash-web-players-for-audio/feed/</wfw:commentRss>
		<slash:comments>2</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-06-09 14:08:51 by W3 Total Cache
-->