Answer the question
In order to leave comments, you need to log in
Why doesn't Chrome speech input hear the microphone?
<input type="text" speech x-webkit-speech /> does not hear the microphone, while Google search on the adjacent page works fine. Went through all the settings, no effect. What is the correct way to use x-webkit-speech?
Answer the question
In order to leave comments, you need to log in
Links to study
nooshu.com/experimenting-with-webkit-form-speech-input - How to add support for speech inputIs the Voice Search plugin worth it?
www.w3.org/2005/Incubator/htmlspeech/2010/10/googl... - Google's speech input API specifications
<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>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question