The <audio>
is used to embed sound content in documents. It may contain one or more audio sources, represented using the src
attribute or the <source>
element: the browser will choose the most suitable one. It can also be the destination for streamed media, using a MediaStream
.
The above example shows simple usage of the <audio>
element. In a similar manner to the <img>
element, we include a path to the media we want to embed inside the src
attribute; we can include other attributes to specify information such as whether we want it to autoplay and loop, whether we want to show the browser's default audio controls, etc.
The content inside the opening and closing <audio></audio>
tags is shown as a fallback in browsers that don't support the element.
Browsers don't all support the same audio formats; you can provide multiple sources inside nested <source>
elements, and the browser will then use the first one it understands:
<audio controls> <source src="myAudio.mp3" type="audio/mp3"> <source src="myAudio.ogg" type="audio/ogg"> <p>Your browser doesn't support HTML5 audio. Here is a <a href="myAudio.mp4">link to the audio</a> instead.</p> </audio>
Other usage notes:
controls
attribute, the audio player won't include the browser's default controls; you can create your own custom controls using JavaScript and the HTMLMediaElement
API.HTMLMediaElement
s fire many different events.<audio>
elements can't have subtitles/captions associated with them in the same way that <video>
elements can. See WebVTT and Audio by Ian Devlin for some useful information and workarounds.A good general source of information on using HTML <audio>
is the Video and audio content beginner's tutorial.
This element's attributes include the global attributes.
autoplay
controls
crossorigin
<canvas>
element without being tainted. The allowed values are: Origin:
HTTP header without a cookie, X.509 certificate, or performing HTTP Basic authentication. If the server does not give credentials to the origin site (by not setting the Access-Control-Allow-Origin:
HTTP header), the image will be tainted, and its usage restricted.Origin:
HTTP header with a cookie, a certificate, or performing HTTP Basic authentication. If the server does not give credentials to the origin site (through Access-Control-Allow-Credentials:
HTTP header), the image will be tainted and its usage restricted.Origin:
HTTP header), preventing its non-tainted used in <canvas>
elements. If invalid, it is handled as if the enumerated keyword anonymous was used. See CORS settings attributes for additional information.loop
muted
false
.preload
none
: Indicates that the audio should not be preloaded.metadata
: Indicates that only audio metadata (e.g. length) is fetched.auto
: Indicates that the whole audio file can be downloaded, even if the user is not expected to use it.auto
value.If not set, preload
's default value is browser-defined (i.e. each browser may have its own default value). The spec advises it to be set to metadata
.
autoplay
attribute has precedence over preload
. If autoplay
is specified, the browser would obviously need to start downloading the audio for playback.src
<source>
element within the audio block to specify the audio to embed.The <audio>
element has no intrinsic visual output of its own unless the controls
attribute is specified, in which case the browser's default controls are shown.
The default controls have a display
value of inline
by default, and it is often a good idea set the value to block
to improve control over positioning and layout, unless you want it to sit within a text block or similar.
You can style the default controls with properties that affect the block as a single unit, so for example you can give it a border
and border-radius
, padding
, margin
, etc. You can't however style the individual components inside the audio player (e.g. change the button size or icons, change the font, etc.), and the controls are different across the different browsers.
To get a consistent look and feel across browsers, you'll need to create custom controls; these can be marked up and styled in whatever way you want, and then JavaScript can be used along with the HTMLMediaElement
API to wire up their functionality.
Video player styling basics provides some useful styling techniques — it is written in the context of <video>
, but much of it is equally applicable to <audio>
.
You can detect when tracks are added to and removed from an <audio>
element using the addtrack
and removetrack
events. However, these events aren't sent directly to the <audio>
element itself. Instead, they're sent to the track list object within the <audio>
element's HTMLMediaElement
that corresponds to the type of track that was added to the element:
HTMLMediaElement.audioTracks
AudioTrackList
containing all of the media element's audio tracks. You can add a listener for addtrack
to this object to be alerted when new audio tracks are added to the element.HTMLMediaElement.videoTracks
addtrack
listener to this VideoTrackList
object to be informed when video tracks are added to the element.HTMLElement.textTracks
addtrack
event listener to this TextTrackList
to be notified when new text tracks are added to the element.Note: Even though it's an <audio>
element, it still has video and text track lists, and can in fact be used to present video, although the use interface implications can be odd.
For example, to detect when audio tracks are added to or removed from an <audio>
element, you can use code like this:
var elem = document.querySelector("audio"); elem.audioTrackList.onaddtrack = function(event) { trackEditor.addTrack(event.track); }; elem.audioTrackList.onremovetrack = function(event) { trackEditor.removeTrack(event.track); };
This code watches for audio tracks to be added to and removed from the element, and calls a hypothetical function on a track editor to register and remove the track from the editor's list of available tracks.
You can also use addEventListener()
to listen for the addtrack
and removetrack
events.
The following example shows simple usage of the <audio>
element to play an OGG file. It will autoplay due to the autoplay
attribute, and also includes fallback content.
<!-- Simple audio playback --> <audio src="AudioTest.ogg" autoplay> Your browser does not support the <code>audio</code> element. </audio>
<audio>
element with <source>
elementThis example specifies which audio track to embed using the src
attribute on a nested <source>
element rather than directly on the <audio>
element. It is always useful to include the file's MIME type inside the type
attribute, as the browser is able to instantly tell if it can play that file, and not waste time on it if not.
<audio controls="controls"> <source src="foo.wav" type="audio/wav"> Your browser does not support the <code>audio</code> element. </audio>
<audio>
with multiple <source>
elementsThis example includes multiple <source>
elements. The browser tries to load the first source element (Opus) if it is able to play it; if not it falls back to the second (Vorbis) and finally back to MP3:
<audio controls=""> <source src="foo.opus" type="audio/ogg; codecs=opus"/> <source src="foo.ogg" type="audio/ogg; codecs=vorbis"/> <source src="foo.mp3" type="audio/mpeg"/> </audio>
Audio with spoken dialog should provide both captions and transcripts that accurately describe its content. Captions allow people who are experiencing hearing loss to understand an audio recording's content as the recording is being played, while transcripts allow people who need additional time to be able to review the recording's content at a pace and format that is comfortable for them.
If automatic captioning services are used, it is important to review the generated content to ensure it accurately represents the source audio.
In addition to spoken dialog, subtitles and transcripts should also identify music and sound effects that communicate important information. This includes emotion and tone:
1 00:00:00 --> 00:00:45 [Energetic techno music] 2 00:00:46 --> 00:00:51 Welcome to the Time Keeper's podcast! In this episode we're discussing which Swisswatch is a wrist switchwatch? 16 00:00:52 --> 00:01:02 [Laughing] Sorry! I mean, which wristwatch is a Swiss wristwatch?
Content categories |
Flow content, phrasing content, embedded content. If it has a controls attribute: interactive content and palpable content. |
---|---|
Permitted content | If the element has a src attribute: zero or more <track> elements followed by transparent content that contains no <audio> or <video> media elements.Else: zero or more <source> elements followed by zero or more <track> elements followed by transparent content that contains no <audio> or <video> media elements. |
Tag omission | None, both the starting and ending tag are mandatory. |
Permitted parents | Any element that accepts embedded content. |
Permitted ARIA roles | application |
DOM interface | HTMLAudioElement |
Specification | Status | Comment |
---|---|---|
HTML Living Standard The definition of '<audio>' in that specification. | Living Standard | |
HTML5 The definition of '<audio>' in that specification. | Recommendation |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | 3 | Yes | 3.5
|
9 | 10.5 | 3.1 |
autoplay |
3 | Yes | 3.5 | 9 | 10.5 | 3.1 |
buffered |
? | Yes | 4 | ? | ? | ? |
controls |
3 | Yes | 3.5 | 9 | 10.5 | 3.1 |
loop |
3 | Yes | 11 | 9 | 10.5 | 3.1 |
mozcurrentsampleoffset
|
No | No | 3.5 | No | No | No |
muted |
? | Yes | 11 | ? | ? | ? |
played |
49 | 14 | 15 | 11 | 46 | 9.1 |
preload |
3 | Yes | 4
|
9 | 15
|
3.1 |
src |
3 | Yes | 3.5 | 9 | 10.5 | 3.1 |
volume |
? | Yes | ? | ? | ? | ? |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | 3 | 18 | Yes | 4
|
Yes | Yes | Yes |
autoplay |
3 | 18 | Yes | 4 | Yes | Yes | Yes |
buffered |
? | ? | Yes | 4 | ? | ? | ? |
controls |
3 | 18 | Yes | 4 | Yes | Yes | Yes |
loop |
3 | 18 | Yes | 14 | Yes | Yes | Yes |
mozcurrentsampleoffset
|
No | No | No | 4 | No | No | No |
muted |
? | ? | Yes | 14 | ? | ? | ? |
played |
49 | 49 | 14 | 15 | Yes | Yes | 5.0 |
preload |
3 | 18 | Yes | 4 | 15
|
Yes | Yes |
src |
3 | 18 | Yes | 4 | Yes | Yes | Yes |
volume |
? | ? | Yes | ? | Yes | Yes | ? |
HTMLAudioElement
nsIDOMHTMLMediaElement
<source>
<video>
audio
element (HTML5 specification)
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio