<?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>video Archives - WardNet</title>
	<atom:link href="https://www.wardnet.co.uk/tag/video/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wardnet.co.uk/tag/video/</link>
	<description>Infrastructure, ERP and General Technology Blog</description>
	<lastBuildDate>Mon, 06 Apr 2015 20:19:11 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2026/01/wp-1767387074640.jpg?fit=32%2C32&#038;ssl=1</url>
	<title>video Archives - WardNet</title>
	<link>https://www.wardnet.co.uk/tag/video/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">63479081</site>	<item>
		<title>Installing Oracle Linux 6 &#8211; Video</title>
		<link>https://www.wardnet.co.uk/install-oracle-linux-6/</link>
		
		<dc:creator><![CDATA[Jonathan Ward]]></dc:creator>
		<pubDate>Mon, 30 Mar 2015 12:11:56 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Guides]]></category>
		<category><![CDATA[Oracle Linux]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Virtual Box]]></category>
		<guid isPermaLink="false">http://wardnet.co.uk/?p=346</guid>

					<description><![CDATA[<p>My latest Virtual Box install video, this time Oracle Linux 6</p>
<p><a href="https://www.wardnet.co.uk/install-oracle-linux-6/">Installing Oracle Linux 6 &#8211; Video</a></p>
]]></description>
										<content:encoded><![CDATA[<div style="width: 640px;" class="wp-video"><video class="wp-video-shortcode" id="video-346-1" width="640" height="360" preload="metadata" controls="controls"><source type="video/webm" src="http://www.wardnet.co.uk/wp-content/uploads/2015/03/OracleLinux6.webm?_=1" /><a href="http://www.wardnet.co.uk/wp-content/uploads/2015/03/OracleLinux6.webm">http://www.wardnet.co.uk/wp-content/uploads/2015/03/OracleLinux6.webm</a></video></div>
<p>My latest Virtual Box install video, this time Oracle Linux 6</p>
<p><a href="https://www.wardnet.co.uk/install-oracle-linux-6/">Installing Oracle Linux 6 &#8211; Video</a></p>
]]></content:encoded>
					
		
		<enclosure url="http://www.wardnet.co.uk/wp-content/uploads/2015/03/OracleLinux6.webm" length="197514823" type="video/webm" />

		<post-id xmlns="com-wordpress:feed-additions:1">346</post-id>	</item>
		<item>
		<title>HTML 5 Video Code</title>
		<link>https://www.wardnet.co.uk/html-5-video-code/</link>
		
		<dc:creator><![CDATA[Jonathan Ward]]></dc:creator>
		<pubDate>Fri, 25 Oct 2013 10:25:17 +0000</pubDate>
				<category><![CDATA[redsumo]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[DOM]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[initial volume]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[video]]></category>
		<guid isPermaLink="false">http://wardnet.co.uk/?p=278</guid>

					<description><![CDATA[<p>With the new features of HTML5 being constantly shoved in our faces, I though I&#8217;d share a little snippet of</p>
<p><a href="https://www.wardnet.co.uk/html-5-video-code/">HTML 5 Video Code</a></p>
]]></description>
										<content:encoded><![CDATA[<p>With the new features of HTML5 being constantly shoved in our faces, I though I&#8217;d share a little snippet of code that adjusts the initial volume of a video on a HTML page- this particular example is used at <a title="Redsumo News" href="http://www.redsumo.com/blog" target="_blank">http://www.redsumo.com/blog</a> for the video header on the main page. The video was too loud when the client computer volume was at 100% so, we decided it needed lowering, without re-encoding the video.</p>
<p>&nbsp;</p>
<p><span style="font-family: 'courier new', courier;"><span style="color: #0000ff;">&lt;video</span><span style="color: #ff0000;"> id</span>=<span style="color: #ff6600;">&#8220;welcomevid&#8221;</span> <span style="color: #ff0000;">width</span>=<span style="color: #ff6600;">&#8220;620&#8221;</span> <span style="color: #ff0000;">height</span>=<span style="color: #ff6600;">&#8220;250&#8221;</span> <span style="color: #ff0000;">controls</span>=<span style="color: #ff6600;">&#8220;controls&#8221;</span> <span style="color: #ff0000;">autoplay</span>=<span style="color: #ff6600;">&#8220;autoplay&#8221;</span> <span style="color: #ff0000;">onplay</span>=<span style="color: #ff6600;">&#8220;document.getElementById</span>(&#8216;welcomevid&#8217;)<span style="color: #ff0000;">.volume</span>=<span style="color: #ff0000;">0.2</span>;&#8221; <span style="color: #0000ff;">&gt;&lt;/video&gt;</span></span></p>
<p>Note the <span style="color: #ff0000;">id</span>=<span style="color: #ff6600;">&#8220;welcomevid&#8221;</span> which is required in order to set the volume paramter in the DOM with the <span style="color: #ff6600;">getElementById</span> command.</p>
<p>Volume control is 0-1 with 0.5 being 50% etc. hence the use of 0.2 in this example.</p>
<p><a href="https://www.wardnet.co.uk/html-5-video-code/">HTML 5 Video Code</a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">278</post-id>	</item>
	</channel>
</rss>
