Skip to Content
HTML5 Cookbook
book

HTML5 Cookbook

by Christopher Schmitt, Kyle Simpson
November 2011
Intermediate to advanced
280 pages
6h 35m
English
O'Reilly Media, Inc.
Content preview from HTML5 Cookbook

Chapter 4. Native Audio

Emily Lewis

Introduction

You already deal with embedded content—content that is imported or inserted into a web page—almost every day (see http://www.w3.org/TR/html5/content-models.html#embedded-content-0). Think about the img element. It inserts content—the image—into your web page via the src attribute.

With HTML5, we now have many more options for embedded content, including native audio via the new audio element (see http://dev.w3.org/html5/markup/audio.html).

Native? Yes. That means no more ungainly object and embed. No more need to deliver audio with a third-party plug-in and, as such, no more design headaches with dynamic layouts or drop-down menus.

With audio in our arsenal, not only can we deliver audio files directly through the browser, but we can style and manipulate the element and its attributes via CSS and JavaScript.

4.1. Adding HTML5 Audio

Problem

You want to play native audio on your web page.

Solution

Add the audio element, with the src attribute referencing the location of your audio file and fallback content for older browsers:

<audio src="audio.ogg" controls>
    Download <a href="audio.ogg">episode 42 of Learning to Love HTML5</a>
</audio>

Also be sure to include the controls attribute if you want browsers to display a default control interface for your audio (see Figure 4-1):

<audio src="audio.ogg" controls>
Default audio controls in Chrome 9 include play/pause, a progress bar, and volume/mute
Figure 4-1. Default audio controls in Chrome ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Practical HTML5 Projects

Practical HTML5 Projects

Adrian W. West
Beginning HTML5 and CSS3 For Dummies

Beginning HTML5 and CSS3 For Dummies

Ed Tittel, Chris Minnick

Publisher Resources

ISBN: 9781449318444Errata Page