HTML 5 Tutorial Chapter 4 Audio Audio The

  • Slides: 7
Download presentation
HTML 5 Tutorial Chapter 4 Audio

HTML 5 Tutorial Chapter 4 Audio

Audio • The HTML 5. 0 specification allows us playing sound using the <audio>

Audio • The HTML 5. 0 specification allows us playing sound using the <audio> element. • The <audio> element can play sound files or an audio stream. • The HTML 5. 0 specification aims at supporting the following sounds formats: MP 3, WAV and Ogg Vorbis.

Format • Until now, there has never been a standard for playing audio on

Format • Until now, there has never been a standard for playing audio on a web page. Today, most audio are played through a plugin (like flash). However, not all browsers have the same plugins. • Currently, there are 3 supported audio formats for the audio element: Format Firefox 3. 5 Opera 10. 5 Chrome 3. 0 IE 9 Safari 3. 0 Ogg Vorbis Yes Yes No No MP 3 No No Yes Yes Wav Yes No No Yes

Basic Syntax to Embed Video : <audio src='data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20415%20289%22%3E%3C/svg%3E' data-src="music. ogg" controls="controls"> *Content we place in

Basic Syntax to Embed Video : <audio src="music. ogg" controls="controls"> *Content we place in between the tags will be displayed when the browser doesn't support playing audio </audio> • The control attribute is for adding the play, pause and volume controls

Basic Syntax • The audio element allows multiple source elements. Source elements can link

Basic Syntax • The audio element allows multiple source elements. Source elements can link to different audio files. • We can add the <source> child elements in between the audio element tags. The browser will use the first supported format. <audio controls="controls"> <source src="mymusic. ogg" type="audio/ogg"> <source src="mymusic. mp 3" type="audio/mpeg"> browser does not support html 5. 0 </audio>

Attribute • The HTML 5. 0 supports the following attributes : Attribute Value Description

Attribute • The HTML 5. 0 supports the following attributes : Attribute Value Description autoplay Specifies that the audio will start playing as soon as it is ready. controls Specifies that controls will be displayed, such as a play button. loop Specifies that the audio will start playing again (looping) when it reaches the end preload Specifies that the audio will be loaded at page load, and ready to run. Ignored if autoplay is present. src url Specifies the URL of the audio to play

Reference 1. Hickson, I. (Eds. ). (2011). HTML Living Standar. Retrieved from http: //www.

Reference 1. Hickson, I. (Eds. ). (2011). HTML Living Standar. Retrieved from http: //www. whatwg. org/specs/webapps/current-work/multipage/ 2. World Wide Web Consortium. (n. d. ). HTML 5 Tutorial. Retrieved from http: //www. w 3 schools. com/html 5/default. asp