nooshu.com/experimenting-with-webkit-form-speech-input - Как добавить поддержку речевого вводаПлагин Voice Search стоит?
www.w3.org/2005/Incubator/htmlspeech/2010/10/googl... - спецификации API речевого ввода от Google
<script>
function speechcapable(){
document.getElementById('text').innerHTML = document.getElementById('speech').value;
}
</script>
<input name="speech" id="speech" type="text" x-webkit-speech speech error onwebkitspeechchange="speechcapable(true);" />
<textarea style="width:200px; height:60px;" id="text"></textarea>