HTML audio: Difference between revisions

Content deleted Content added
No edit summary
(edited with ProveIt)
Line 28:
|-
! style="text-align: left;" | [[MP3]]
| rowspan="2" {{yes|5.0}}<ref group="t">{{citation |url=http://www.techradar.com/news/internet/web/microsoft-steps-towards-faster-internet-explorer-9-677263 |title=Microsoft previews Internet Explorer 9 |first=Mary |last=Branscombe |date=2010-03-16 |publisher=TechRadar UK}}</ref>
| {{no}}<ref group="g">{{citation |url=https://bugzilla.mozilla.org/show_bug.cgi?id=562730 |title=Bug 562730 - Reproducing Mp3 files with html5 |publisher=Mozilla}}</ref>
| rowspan="2" {{depends}}
|-
Line 37:
! style="text-align: left;" | [[Speex]]
| {{no}}
| {{no}}<ref group="g">{{citation |url=https://bugzilla.mozilla.org/show_bug.cgi?id=476752 |title=Bug 476752 - support the speex voice codec in &lt;audio&gt; and &lt;video&gt; elements |publisher=Mozilla}}</ref>
| {{depends}}<ref group="note" name="webkit-codecs" />
| {{no}}
|-
Line 44:
 
==Speech API==
The speech inputSpeech 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 your voice to text, from your computer's microphone. The recorded audio is sent to speech servers for transcription, after which the text is typed out for you. The API itself is agnostic of the underlying speech recognition implementation and can support both server based as well as embedded recognizers. <ref>{{cite web | url=http://lists.w3.org/Archives/Public/public-xg-htmlspeech/2011Feb/att-0020/api-draft.html#introduction | title=API draft | accessdate=January 28, 2012}}</ref>
The '''HTML Speech Incubator group''' has proposed the implementation of audio-speech technology in browsers in the form of uniform, cross-platform APIs. thatThe canAPI becontains usedboth:<ref>{{cite toweb buildweb| applicationsurl=https://wiki.mozilla.org/HTML5_Speech_API The| title=HTML5 Spech API contains| both:accessdate=January 28, 2012}}</ref>
*Speech Input API
*Text to Speech API
<ref>{{cite web | url=https://wiki.mozilla.org/HTML5_Speech_API | title=HTML5 Spech API | accessdate=January 28, 2012}}</ref>
 
Google integrated this feature into Google Chrome on March 2011.<ref>{{cite web | url=http://chrome.blogspot.com/2011/03/talking-to-your-computer-with-html5.html | title=Talking to your computer | accessdate=January 28, 2012}}</ref> Letting its users search the web with their voice by doing:
<script type="text/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>
 
==See also==