SlideShare a Scribd company logo
INTRO TO HTML5 <audio> 
TAG 
Presenter: Satej Kumar Sahu, 
Mindfire Solutions, 
Date: 17/09/2014
Contents 
 HTML5 and <audio> tag 
 HTML5 <audio> tag 
 Basic format in which <audio> tag can be used 
 <audio> tag attributes 
 <audio> events 
 Example usage of <audio> attributes 
 Example usage of <audio> events 
 Conclusion
HTML5 and <audio> tag 
- We all know about HTML5 and its various use cases. It 
has enriched the user interface with a rich set of 
functionalities and elements that have not only 
improved the user experience in terms of UX and 
efficiency and means of communication but have also 
provided a more meaningful structure to html with 
the introduction of HTML5. 
- In this presentation, I will be giving a brief intro on the 
HTML5 <audio> tag element.
HTML5 <audio> tag 
 HTML5 <audio> tag is used to play audio in html 
pages. It takes the below basic format in its simplest 
form: 
<audio src="my_music.mp3" controls></audio> 
With the above structure, when the html page loads 
the page requests for the audio file listed in the 
"src" attribute and the “controls” attribute 
displays the browser default audio player for 
controlling playback. 
 In the next slide, I have shown the sample code and 
the browser view (Chrome).
<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="UTF-8"> 
<title>Intro</title> 
</head> 
<body> 
<audio src="sample.mp3" controls></audio> 
</body> 
</html>
Basic format in which <audio> tag 
can be used 
There are basically two formats in which <audio> tag can be used: 
1. By providing the "src" attribute 
<audio src="sample.mp3"> 
<p>Your browser does not support the audio element </p> 
</audio> 
2. By using the <source> tag which helps in providing fallback 
mechanism to play a file among the list which is supported by the 
browser. 
<audio> 
<source src="foo.mp3" type="audio/mpeg"> 
<source src="foo.ogg" type="audio/ogg"> 
<p>Your browser does not support the audio element </p> 
</audio>
<audio> tag attributes 
The <audio> tag comes with many inline global 
attributes that help in modifying its behaviour. 
Some of the attributes are: 
 autoplay 
 buffered 
 controls 
 loop 
 muted 
 played 
 preload 
 src 
 volume
<audio> events 
 <audio> tag comes with a pre-defined list of events 
that it can fire when it reaches a particular event 
behavior, letting us take appropriate action to notify 
the user or to take any specific action. 
 Some events are: 
 abort 
 canplay 
 volumechange 
 play 
 pause
Example usage of <audio> 
attributes 
<audio src="foo.mp3" autoplay loop controls> 
<p>Your browser does not support the audio element 
</p> 
</audio> 
- The above audio starts "autoplaying" once the page loads 
with audio controls displayed and "loops" that is replays 
the audio once it reaches the end. 
- They are basically boolean attributes which when present 
apply respective properties.
Example usage of <audio> events 
<audio src="foo.mp3" id="media" controls></audio> 
<script> 
var elem = document.getElementById("media"); 
elem.addEventListener("seeked", function() { 
elem.play(); 
}, true); 
</script> 
The event "seeked" is listened to, which is sent whenever a 
seek action is completed and then the play() method of 
audio element is called to start playback.
Conclusion 
- We covered a basic intro to the HTML5 
<audio> tag element. 
- <audio> element gives us a set of pre-defined 
attributes, events and methods to customize 
the audio behavior to our needs. 
- The implementation of attributes, events are 
browser dependent and have their respective 
quirks and differences in implementation and 
mechanism. But these can be handled safely 
and can be taken care of.
Thanks.

More Related Content

What's hot

Web Design Basics for Kids: HTML & CSS
Web Design Basics for Kids: HTML & CSSWeb Design Basics for Kids: HTML & CSS
Web Design Basics for Kids: HTML & CSS
AnnMarie Ppl
 
Html media
Html mediaHtml media
Html media
Webtech Learning
 
Web Design 101
Web Design 101Web Design 101
Web Design 101
vegdwk
 
How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
Manoj kumar Deswal
 
Links in Html
Links in HtmlLinks in Html
Links in Html
sadeenedian08
 
Html ppt
Html pptHtml ppt
Html ppt
Ruchi Kumari
 
Html text and formatting
Html text and formattingHtml text and formatting
Html text and formatting
eShikshak
 
New Form Element in HTML5
New Form Element in HTML5New Form Element in HTML5
New Form Element in HTML5
Zahra Rezwana
 
3.2 javascript regex
3.2 javascript regex3.2 javascript regex
3.2 javascript regex
Jalpesh Vasa
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
McSoftsis
 
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
Dom
DomDom
Java script
Java scriptJava script
Java script
Shyam Khant
 
Html multimedia tag
Html multimedia tagHtml multimedia tag
Html multimedia tag
Student
 
XSLT.ppt
XSLT.pptXSLT.ppt
XSLT.ppt
KGSCSEPSGCT
 
Javascript event handler
Javascript event handlerJavascript event handler
Javascript event handler
Jesus Obenita Jr.
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
Doris Chen
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
casestudyhelp
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
Sayan De
 
Xml presentation
Xml presentationXml presentation
Xml presentation
Miguel Angel Teheran Garcia
 

What's hot (20)

Web Design Basics for Kids: HTML & CSS
Web Design Basics for Kids: HTML & CSSWeb Design Basics for Kids: HTML & CSS
Web Design Basics for Kids: HTML & CSS
 
Html media
Html mediaHtml media
Html media
 
Web Design 101
Web Design 101Web Design 101
Web Design 101
 
How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
 
Links in Html
Links in HtmlLinks in Html
Links in Html
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html text and formatting
Html text and formattingHtml text and formatting
Html text and formatting
 
New Form Element in HTML5
New Form Element in HTML5New Form Element in HTML5
New Form Element in HTML5
 
3.2 javascript regex
3.2 javascript regex3.2 javascript regex
3.2 javascript regex
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
Intro to html
Intro to htmlIntro to html
Intro to html
 
Dom
DomDom
Dom
 
Java script
Java scriptJava script
Java script
 
Html multimedia tag
Html multimedia tagHtml multimedia tag
Html multimedia tag
 
XSLT.ppt
XSLT.pptXSLT.ppt
XSLT.ppt
 
Javascript event handler
Javascript event handlerJavascript event handler
Javascript event handler
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Xml presentation
Xml presentationXml presentation
Xml presentation
 

Similar to Intro to HTML5 audio tag

9 audio
9 audio9 audio
9 audio
SatyakiDas12
 
Html 5 full course
Html 5 full courseHtml 5 full course
Html 5 full course
AbhishekMondal42
 
Html5
Html5Html5
Lecture9 web design and development
Lecture9 web design and developmentLecture9 web design and development
Lecture9 web design and development
Rafi Haidari
 
Web Design Lecture 4.pptx
Web Design Lecture 4.pptxWeb Design Lecture 4.pptx
Web Design Lecture 4.pptx
MohammedNoor74
 
HTML Multimedia.pptx
HTML Multimedia.pptxHTML Multimedia.pptx
HTML Multimedia.pptx
ssuser08ea44
 
Basics of HTML5 for Phonegap
Basics of HTML5 for PhonegapBasics of HTML5 for Phonegap
Basics of HTML5 for Phonegap
Rakesh Jha
 
Html attributes
Html attributesHtml attributes
Html attributes
Mekbib1
 
HTML5 Audio & Video
HTML5 Audio & VideoHTML5 Audio & Video
HTML5 Audio & Video
Aaron Gustafson
 
Html5 tutorial
Html5 tutorialHtml5 tutorial
Html5 tutorial
madhavforu
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and Development
Shagor Ahmed
 
Web Directions @media 2010
Web Directions @media 2010Web Directions @media 2010
Web Directions @media 2010
Patrick Lauke
 
FYBSC IT Web Programming Unit II Audio Video in HTML
FYBSC IT Web Programming Unit II  Audio  Video in HTMLFYBSC IT Web Programming Unit II  Audio  Video in HTML
FYBSC IT Web Programming Unit II Audio Video in HTML
Arti Parab Academics
 
Html5 first look by aj.Ball
Html5 first look by aj.BallHtml5 first look by aj.Ball
Html5 first look by aj.Ball
Supote Phunsakul
 
Seo And Podcasting Presentation
Seo And Podcasting PresentationSeo And Podcasting Presentation
Seo And Podcasting Presentation
Jordan Kasteler
 
SEO And Podcasting Presentation
SEO And Podcasting PresentationSEO And Podcasting Presentation
SEO And Podcasting Presentation
Jordan Kasteler
 
HTML5 Multimedia: where we are, where we're going
HTML5 Multimedia: where we are, where we're goingHTML5 Multimedia: where we are, where we're going
HTML5 Multimedia: where we are, where we're going
brucelawson
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
Steven Chipman
 
Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3
Saurabh Kheni
 
Using HTML5 sensibly
Using HTML5 sensiblyUsing HTML5 sensibly
Using HTML5 sensibly
Christian Heilmann
 

Similar to Intro to HTML5 audio tag (20)

9 audio
9 audio9 audio
9 audio
 
Html 5 full course
Html 5 full courseHtml 5 full course
Html 5 full course
 
Html5
Html5Html5
Html5
 
Lecture9 web design and development
Lecture9 web design and developmentLecture9 web design and development
Lecture9 web design and development
 
Web Design Lecture 4.pptx
Web Design Lecture 4.pptxWeb Design Lecture 4.pptx
Web Design Lecture 4.pptx
 
HTML Multimedia.pptx
HTML Multimedia.pptxHTML Multimedia.pptx
HTML Multimedia.pptx
 
Basics of HTML5 for Phonegap
Basics of HTML5 for PhonegapBasics of HTML5 for Phonegap
Basics of HTML5 for Phonegap
 
Html attributes
Html attributesHtml attributes
Html attributes
 
HTML5 Audio & Video
HTML5 Audio & VideoHTML5 Audio & Video
HTML5 Audio & Video
 
Html5 tutorial
Html5 tutorialHtml5 tutorial
Html5 tutorial
 
Web design and Development
Web design and DevelopmentWeb design and Development
Web design and Development
 
Web Directions @media 2010
Web Directions @media 2010Web Directions @media 2010
Web Directions @media 2010
 
FYBSC IT Web Programming Unit II Audio Video in HTML
FYBSC IT Web Programming Unit II  Audio  Video in HTMLFYBSC IT Web Programming Unit II  Audio  Video in HTML
FYBSC IT Web Programming Unit II Audio Video in HTML
 
Html5 first look by aj.Ball
Html5 first look by aj.BallHtml5 first look by aj.Ball
Html5 first look by aj.Ball
 
Seo And Podcasting Presentation
Seo And Podcasting PresentationSeo And Podcasting Presentation
Seo And Podcasting Presentation
 
SEO And Podcasting Presentation
SEO And Podcasting PresentationSEO And Podcasting Presentation
SEO And Podcasting Presentation
 
HTML5 Multimedia: where we are, where we're going
HTML5 Multimedia: where we are, where we're goingHTML5 Multimedia: where we are, where we're going
HTML5 Multimedia: where we are, where we're going
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
 
Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3Replacing flash with HTML5 and CSS3
Replacing flash with HTML5 and CSS3
 
Using HTML5 sensibly
Using HTML5 sensiblyUsing HTML5 sensibly
Using HTML5 sensibly
 

Recently uploaded

Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
Hiike
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
Intelisync
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
HarisZaheer8
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Malak Abu Hammad
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Alpen-Adria-Universität
 
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Tatiana Kojar
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
GDSC PJATK
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Safe Software
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
Chart Kalyan
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 

Recently uploaded (20)

Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
 
A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
AWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptxAWS Cloud Cost Optimization Presentation.pptx
AWS Cloud Cost Optimization Presentation.pptx
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing InstancesEnergy Efficient Video Encoding for Cloud and Edge Computing Instances
Energy Efficient Video Encoding for Cloud and Edge Computing Instances
 
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
Skybuffer AI: Advanced Conversational and Generative AI Solution on SAP Busin...
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
Driving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success StoryDriving Business Innovation: Latest Generative AI Advancements & Success Story
Driving Business Innovation: Latest Generative AI Advancements & Success Story
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdfHow to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
How to Interpret Trends in the Kalyan Rajdhani Mix Chart.pdf
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 

Intro to HTML5 audio tag

  • 1. INTRO TO HTML5 <audio> TAG Presenter: Satej Kumar Sahu, Mindfire Solutions, Date: 17/09/2014
  • 2. Contents  HTML5 and <audio> tag  HTML5 <audio> tag  Basic format in which <audio> tag can be used  <audio> tag attributes  <audio> events  Example usage of <audio> attributes  Example usage of <audio> events  Conclusion
  • 3. HTML5 and <audio> tag - We all know about HTML5 and its various use cases. It has enriched the user interface with a rich set of functionalities and elements that have not only improved the user experience in terms of UX and efficiency and means of communication but have also provided a more meaningful structure to html with the introduction of HTML5. - In this presentation, I will be giving a brief intro on the HTML5 <audio> tag element.
  • 4. HTML5 <audio> tag  HTML5 <audio> tag is used to play audio in html pages. It takes the below basic format in its simplest form: <audio src="my_music.mp3" controls></audio> With the above structure, when the html page loads the page requests for the audio file listed in the "src" attribute and the “controls” attribute displays the browser default audio player for controlling playback.  In the next slide, I have shown the sample code and the browser view (Chrome).
  • 5. <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Intro</title> </head> <body> <audio src="sample.mp3" controls></audio> </body> </html>
  • 6. Basic format in which <audio> tag can be used There are basically two formats in which <audio> tag can be used: 1. By providing the "src" attribute <audio src="sample.mp3"> <p>Your browser does not support the audio element </p> </audio> 2. By using the <source> tag which helps in providing fallback mechanism to play a file among the list which is supported by the browser. <audio> <source src="foo.mp3" type="audio/mpeg"> <source src="foo.ogg" type="audio/ogg"> <p>Your browser does not support the audio element </p> </audio>
  • 7. <audio> tag attributes The <audio> tag comes with many inline global attributes that help in modifying its behaviour. Some of the attributes are:  autoplay  buffered  controls  loop  muted  played  preload  src  volume
  • 8. <audio> events  <audio> tag comes with a pre-defined list of events that it can fire when it reaches a particular event behavior, letting us take appropriate action to notify the user or to take any specific action.  Some events are:  abort  canplay  volumechange  play  pause
  • 9. Example usage of <audio> attributes <audio src="foo.mp3" autoplay loop controls> <p>Your browser does not support the audio element </p> </audio> - The above audio starts "autoplaying" once the page loads with audio controls displayed and "loops" that is replays the audio once it reaches the end. - They are basically boolean attributes which when present apply respective properties.
  • 10. Example usage of <audio> events <audio src="foo.mp3" id="media" controls></audio> <script> var elem = document.getElementById("media"); elem.addEventListener("seeked", function() { elem.play(); }, true); </script> The event "seeked" is listened to, which is sent whenever a seek action is completed and then the play() method of audio element is called to start playback.
  • 11. Conclusion - We covered a basic intro to the HTML5 <audio> tag element. - <audio> element gives us a set of pre-defined attributes, events and methods to customize the audio behavior to our needs. - The implementation of attributes, events are browser dependent and have their respective quirks and differences in implementation and mechanism. But these can be handled safely and can be taken care of.