python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
setState not working anymore if page reloads
I'm using the package speech_to_text in order to create a voice recognition page.
On the first load of the page, everything seems to be right and the package works perfectly.
If I go back and reopen t...
Giovanni
Votes: 0
Answers: 1
Trouble handling else condition when mapping data stream while developing voice app
I am currently developing a voice app with Google Actions. Basically, users have to ask for information in the following data stream and the voice app should reply based on information in that data st...
Daniel Linares
Votes: 0
Answers: 1
Python voice assistant
So i wrote this function to get what i say:
def takeCommand():
r = sr.Recognizer()
with sr.Microphone() as source:
r.pause_threshold = 2
audio = r.listen(source)
try:
...
Noam Kramer
Votes: 0
Answers: 1
Cannot map variable from data stream to users identified response while developing voice app
I am currently developing a voice app with Google Actions where users are able to ask for information about items in a list that is provided through a file stream with Axios as shown in the following ...
Daniel Linares
Votes: 0
Answers: 2