HTML 5 Media

HTML 5 introduced support for audio and video natively in the browser (without plugins). This makes removes the need to use proprietary tools and formats (such as Flash, QuickTime, Windows Media, Real) in order to provide basic media capabilities.

Media Elements

Video

Basic Tag Usage

<video width="720" height="480" src="video.mp4" controls />
		
Example: Video Basics
Reference: w3schools.com - HTML5 Video
Browser Support: Can I use... Video element

Formats/Codecs

MPEG-4/H.264: http://caniuse.com/#feat=mpeg4
WebM/VP8: http://caniuse.com/#feat=webm | http://www.webmproject.org/
Ogg/Theora: http://caniuse.com/#feat=ogv | http://www.theora.org/ Tools: Miro Video Converter

Supporting Multiple Formats

<video width="720" height="480" controls>
	<source src="video.mp4" type="video/mp4">
	<source src="video.ogg" type="video/ogg">
	Your browser does not support the video tag.
</video>
		
Attributes: autoplay, controls, height, width, loop, muted, poster, preload, src

Example: Multiple Formats

Audio

Basic Tag Usage

<audio controls src="audio.mp3" />
		
Reference: w3schools.com - HTML audio Tag
Browser Support: Can I use... Audio element
Formats/Codecs: MP3, Ogg Vorbis, WAV

Supporting Multiple Formats

<audio controls>
	<source src="audio.ogg" type="audio/ogg">
	<source src="audio.mp3" type="audio/mpeg">
	Your browser does not support the audio tag.
</audio>
		
Attributes: autoplay, controls, loop, preload, src

JavaScript

Of course, there are a lot of features and functionality available via JavaScript.

Overview: w3schools.com - HTML Audio/Video DOM Reference
<html>
        <head>
                <title>Video JavaScript</title>
        </head>
        <body>
<!-- Add an “id” to the video tag so that we can access it easily in JavaScript -->
                <video width="720" height="480" controls id="thevideo">
                        <source src="video.webm" type="video/webm">
                        <source src="video.mp4" type="video/mp4">
                        <source src="video.ogg" type="video/ogg">
                        Your browser does not support the video tag.
                </video>
<!-- When this button is clicked, call the doSomething function -->
                <button onClick="doSomething()">Do Something here</button>
                <script type="text/javascript">
                        // Get Access to the Video Object
                        var theVideoObject = document.getElementById("thevideo");
                        // Alert, just to make sure it isn’t null
                        alert(theVideoObject);
                        
						// Called by the Do Something button
                        function doSomething() {
                                // Change the width
                                theVideoObject.width = theVideoObject.width/2;
                                if (theVideoObject.paused) {
                                // If the video is paused, call play
                                        theVideoObject.play();
                                } else {
                                        // Otherwise, pause it
                                        theVideoObject.pause();
                                }                
                        }
                </script>
        </body>
</html>
		
Example: Video JavaScript Example

More Information: HTML5 Rocks - Multimedia