Skip to content Skip to sidebar Skip to footer

How Can I Automate The Form Filling Process For A User On My Webpage With Voice Via Their Microphone?

I have a webpage with a web form with flask. Currently, users will need to manually enter their information into the webpage. Then it's appended to a table that they are redirected

Solution 1:

Actually you cannot use flask for speech recognition. Flask is a backend framework and runs on the server you host it on. Since you want that the speech said by the user should be recognized, you need to use something that is on the client side, i.e, using JavaScript. You could use this tutorial to complete your task.


Post a Comment for "How Can I Automate The Form Filling Process For A User On My Webpage With Voice Via Their Microphone?"