Reputation: 501
So I have speech recognition working, but the problem is it only works in Chrome. After searching around I have seen many people saying that speech recognition works now in Firefox but some saying it doesn't. What is the clear answer?
This website states that
It is July 2018, and the WebSpeech API is still a working draft and only available in Chrome and Firefox.
I have added window.SpeechRecognition = window.webkitSpeechRecognition || window.SpeechRecognition;
I have media.webspeech.recognition.enable
enabled in Firefox.
But nothing works.
Here is an example of my code:
https://jsfiddle.net/k5cm8ypg/
Upvotes: 2
Views: 2907
Reputation: 800
According to https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API#Browser_compatibility there is no support for Firefox (but for some versions of Edge). Last update in February 2019.
Upvotes: 1