HTML5 Audio is a subject of the HTML5 specification, incorporating audio input, playback, and synthesis, as well as speech to text, in the browser.
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:
Example:[2]
<audio controls>
<source src="https://media.w3.org/2010/07/bunny/04-Death_Becomes_Fur.mp4" type="audio/mp4" />
<source src="https://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>
On PC:
On mobile devices:
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 supported by Chrome, Safari, Firefox and Edge.[5][6][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, Opera and Edge.[9][10][11][12]
This table documents the current support for audio coding formats by the <audio>
element.
Format | Container | MIME type | Chrome | Internet Explorer | Edge | Firefox | Opera | Safari |
---|---|---|---|---|---|---|---|---|
PCM | WAV | audio/wav | Yes | No | Yes | Yes, in v3.5 | Yes, in v11.00 | Yes, in v3.1 |
MP3 | MP3 | audio/mpeg | Yes[13] | Yes, in IE9 | Yes | Yes, in v71[14] | Yes[13] | Yes, in v3.1 |
AAC | MP4 | audio/mp4 | Yes | Yes, in IE9 | Yes | From OS[a] | Yes | Yes |
ADTS[b] | audio/aac audio/aacp |
Yes | No | Yes | From OS[a] in v45.0 | Yes | Yes | |
Vorbis | Ogg | audio/ogg | Yes, in v9 | No | In v79[16] In v17, with Web Media Extensions[17] |
Yes, in v3.5 | Yes, in v10.50 | With Xiph QuickTime Components (macOS 10.11 and earlier) |
WebM | audio/webm | Yes | No | In v79[16] In v17, with Web Media Extensions[17] |
Yes, in v4.0 | Yes, in v10.60 | No | |
Opus | Ogg | audio/ogg | Yes, in v25 (in v31 for Windows) |
No | In v79[18] In v17, with Web Media Extensions[17] |
Yes, in v15.0 | Yes, in v14 | No |
WebM | audio/webm | Yes | No | In v79[18] In v17, with Web Media Extensions[17] |
Yes, in v28.0[19] | Yes | No | |
CAF | audio/x-caf | No | No | No | No | No | Yes, in Safari 11 and macOS High Sierra | |
FLAC | FLAC | audio/flac | Yes, in v56[20] | No | Yes, in v16[21] | Yes, in v51[22] | Yes | Yes, in v11[23] |
Ogg | audio/ogg | Yes, in v56[20] | No | In v79[24] In v17, with Web Media Extensions[17] |
Yes, in v51[22] | Yes | No |
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.[25]
Mozilla's Firefox browser implements a similar Audio Data API extension since version 4, implemented in 2010 [26] and released in 2011, but Mozilla warns it is non-standard and deprecated, and recommends the Web Audio API instead.[27] 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.[28] 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.[29]
On PC:
On mobile devices:
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.[32] 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:[33]
Google integrated this feature into Google Chrome in March 2011.[34] 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>
By: Wikipedia.org
Edited: 2021-06-18 14:12:20
Source: Wikipedia.org