HTML5 Audio

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

Lua error in package.lua at line 80: module 'strict' not found. HTML5 Audio is a subject of the HTML5 specification, incorporating audio input, playback, and synthesis, as well as speech to text, in the browser.

<audio> element

The <audio> element represents a sound, or an audio stream.[1] It is commonly used to play back a single audio file within a web page, showing a GUI widget with play/pause/volume controls.

The <audio> element has these attributes:

  • global attributes (accesskey; class; contenteditable; contextmenu; dir; draggable; dropzone; hidden; id; lang; spellcheck; style; tabindex; title; translate)
  • autoplay = "autoplay" or "" (empty string) or empty
    Instructs the UA to automatically begin playback of the audio stream as soon as it can do so without stopping.
  • preload = "none" or "metadata" or "auto" or "" (empty string) or empty
    Represents a hint to the UA about whether optimistic downloading of the audio stream itself or its metadata is considered worthwhile.
    • "none": Hints to the User-Agent that the user is not expected to need the audio stream, or that minimizing unnecessary traffic is desirable.
    • "metadata": Hints to the User-Agent that the user is not expected to need the audio stream, but that fetching its metadata (duration and so on) is desirable.
    • "auto": Hints to the User-Agent that optimistically downloading the entire audio stream is considered desirable.
  • controls = "controls" or "" (empty string) or empty
    Instructs the User-Agent to expose a user interface for controlling playback of the audio stream.
  • loop = "loop" or "" (empty string) or empty
    Instructs the User-Agent to seek back to the start of the audio stream upon reaching the end.
  • mediagroup = string
    Instructs the User-Agent to link multiple videos and/or audio streams together.
  • muted = "muted" or "" (empty string) or empty
    Represents the default state of the audio stream, potentially overriding user preferences.
  • src = non-empty [URL] potentially surrounded by spaces
    The URL for the audio stream.

Example:[2]

<audio controls>
  <source src="http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.mp4" type='audio/mp4' />
  <source src="http://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.oga" type='audio/ogg; codecs=vorbis' />
  <p>Your user agent does not support the HTML5 Audio element.</p>
</audio>

Supported browsers

Supported audio coding formats

The adoption of HTML5 audio, as with HTML5 video, has become polarized between proponents of free and patent-encumbered formats. In 2007, the recommendation to use Vorbis was retracted from the specification by the W3C together with that to use Ogg Theora, citing the lack of a format accepted by all the major browser vendors.

Apple and Microsoft support the ISO/IEC-defined formats AAC and the older MP3. Mozilla and Opera support the free and open, royalty-free Vorbis format in Ogg and WebM containers, and criticize the patent-encumbered nature of MP3 and AAC, which are guaranteed to be “non-free”. Google has so far provided support for all common formats.

Most AAC files with finite length are wrapped in an MPEG-4 container (.mp4, .m4a), which is supported natively in Internet Explorer, Safari, and Chrome, and supported by the OS in Firefox and Opera.[4] Most AAC live streams with infinite length are wrapped in an Audio Data Transport Stream container (.aac, .adts), which is currently only supported by Chrome and Safari.[5][6] Support for AAC in an ADTS container is added in Firefox 45.[7]

Many browsers also support uncompressed PCM audio in a WAVE container.[8]

In 2012, the free and open royalty-free Opus format was released and standardized by IETF. It is supported by Mozilla, Google, and Opera.[9][10][11]

This table documents the current support for audio coding formats by the <audio> element.

Formats supported by different web browsers
Format Chrome Internet Explorer Edge Firefox Opera Safari
WAV with PCM audio Yes No Yes Yes, in v3.5 Yes, in v11.00 Yes, in v3.1
MP3 Yes Yes, in IE9 Yes From OS[lower-alpha 1] From OS[lower-alpha 2] Yes, in v3.1
MP4 with AAC audio Yes Yes, in IE9 Yes From OS[lower-alpha 1] From OS[lower-alpha 2] Yes
ADTS with AAC audio[lower-alpha 3] Yes No No From OS, in v45.0 No Yes
Ogg with Vorbis audio Yes, in v9 No No Yes, in v3.5 Yes, in v10.50 With Xiph QuickTime Components
WebM with Vorbis audio Yes No No[15] Yes, in v4.0 Yes, in v10.60 No
Ogg with Opus audio Yes, in v25
(in v31 for Windows)
No No Yes, in v15.0 Yes, in v14 No
WebM with Opus audio Yes No Pending[16][17] Yes, in v28.0[18] Yes No

Web Audio API and MediaStream Processing API

The Web Audio API specification developed by W3C describes a high-level JavaScript API for processing and synthesizing audio in web applications. The primary paradigm is of an audio routing graph, where a number of AudioNode objects are connected together to define the overall audio rendering. The actual processing will primarily take place in the underlying implementation (typically optimized Assembly / C / C++ code), but direct JavaScript processing and synthesis is also supported.[19]

Mozilla's Firefox browser implements a similar Audio Data API extension since version 4, implemented in 2010 [20] and released in 2011, but Mozilla warns it is non-standard and deprecated, and recommends the Web Audio API instead.[21] Some JavaScript audio processing and synthesis libraries such as Audiolet support both APIs.

The W3C Audio Working Group is also considering the MediaStream Processing API specification developed by Mozilla.[22] In addition to audio mixing and processing, it covers more general media streaming, including synchronization with HTML elements, capture of audio and video streams, and peer-to-peer routing of such media streams.[23]

Supported browsers

Web Speech API

The Web Speech API aims to provide an alternative input method for web applications (without using a keyboard). With this API, developers can give web apps the ability to transcribe voice to text, from the computer's microphone. The recorded audio is sent to speech servers for transcription, after which the text is typed out for the user. The API itself is agnostic of the underlying speech recognition implementation and can support both server based as well as embedded recognizers.[26] The HTML Speech Incubator group has proposed the implementation of audio-speech technology in browsers in the form of uniform, cross-platform APIs. The API contains both:[27]

  • Speech Input API
  • Text to Speech API

Google integrated this feature into Google Chrome on March 2011.[28] Letting its users search the web with their voice with code like:

<script type="application/javascript">
    function startSearch(event) {
        event.target.form.submit();
    }
</script>
<form action="http://www.google.com/search">
  <input type="search" name="q" speech required onspeechchange="startSearch">
</form>

Supported Browsers

  • Apple Safari 6.1 and up [PARTIAL: speech synthesis only; no recognition]
  • Google Chrome 25 and up
  • Mozilla Firefox Desktop 44.0 and up (Linux and Mac) / 45.0 and up (Windows) [PARTIAL: speech synthesis only; no recognition; currently requires "media.webspeech.recognition.enable" about:config option to be manually changed to "true"][29][30][31]

See also

Notes

  1. 1.0 1.1 Firefox does not have native support for MPEG codecs due to licensing reasons. MP3 and AAC support for Firefox is present in: Windows Vista (Firefox v21.0), OS X (v26.0), Linux (v24.0, needs a gstreamer codec).[12]
  2. 2.0 2.1 Opera does not have native support for MPEG codecs due to licensing reasons. Decoding of audio files requires the host OS to provide a compatible library. MP3 and AAC support is present in Windows 8 (v25) and OS X 10.9 (v26)[13]
  3. An MPEG-4 file contains a header that includes metadata followed by "tracks" which can include video as well as audio data, for example, H.264 encoded Video and AAC encoded Audio. ADTS in contrast is a streaming format consisting of a series of frames, each frame having a header followed by the AAC data.[14]

References

  1. HTML5 audio element - W3C
  2. https://www.w3.org/wiki/HTML/Elements/audio
  3. 3.0 3.1 About HTML5 Audio and Video - Safari HTML5 Audio and Video Guide
  4. Is it possible to play this stream using HTML5/javascript?
  5. MP4 container · Issue #95 · karlheyes/icecast-kh · GitHub
  6. https://developer.apple.com/library/ios/technotes/tn2236/_index.html#//apple_ref/doc/uid/DTS40008748-CH1-SECTION5
  7. https://bugzilla.mozilla.org/show_bug.cgi?id=1210231
  8. https://developer.mozilla.org/en-US/docs/Media_formats_supported_by_the_audio_and_video_elements
  9. https://developer.mozilla.org/en-US/docs/Media_formats_supported_by_the_audio_and_video_elements#Ogg_Opus
  10. https://www.xiph.org/press/2012/rfc-6716/
  11. https://hacks.mozilla.org/2012/09/its-opus-it-rocks-and-now-its-an-audio-codec-standard/
  12. http://html5hub.com/so-do-we-have-a-cross-browser-audio-format-yet/
  13. http://stackoverflow.com/questions/28237510/does-opera-support-audio-mp3-files
  14. https://developer.apple.com/library/ios/technotes/tn2236/_index.html#//apple_ref/doc/uid/DTS40008748-CH1-SECTION5
  15. https://dev.modern.ie/platform/status/vorbisaudiocodec/
  16. https://developer.microsoft.com/en-us/microsoft-edge/platform/status/opusaudioplayback
  17. https://developer.microsoft.com/en-us/microsoft-edge/platform/status/webmcontainer
  18. http://www.mozilla.org/en-US/firefox/28.0/releasenotes/
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Lua error in package.lua at line 80: module 'strict' not found.
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. Web Audio API is now available in Chrome
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. Lua error in package.lua at line 80: module 'strict' not found.
  27. Lua error in package.lua at line 80: module 'strict' not found.
  28. Lua error in package.lua at line 80: module 'strict' not found.
  29. Lua error in package.lua at line 80: module 'strict' not found.
  30. Lua error in package.lua at line 80: module 'strict' not found.
  31. Lua error in package.lua at line 80: module 'strict' not found.

External links