-
-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: ability to easily pause listening #6
Comments
Quick update: this proved fairly easy to do 🙂 Am including details in case others wish to attempt something similar. I'm working with a slightly earlier version than the latest code here but I think the principle should be the same. Within the Audio class in client.py create two functions to stop and start the stream, but importantly the stop (for pausing) does not close the stream, leaving it ready to be restarted.
Then within the section where the recognised text is output (ie where you want to do your actions without the mic continuing to listen) call pause() on the vad_audio object at the start of whatever check you're doing and then at the end of the check call restart() and it should be good. This is handy for my project as I've got it outputting spoken replies using TTS and if you don't pause it then the replies get recognised and it goes into a loop! Thanks for this v. handy repo @daanzu |
@nmstoker I'm glad it was easy, and thanks for posting the solution! |
Hi, Could you please write an example of "Audio class " including both pause and restart function? |
I'll try to have an explore myself but I was wondering if there was a straightforward approach that would allow for the listening to be paused.
Would something with calling stop_stream on the Pyaudio stream and then later starting it hi again work?
Alternatively if there's progress on #2 then I could possibly integrate it that way, having the process start and stop when required.
The text was updated successfully, but these errors were encountered: