We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there! Thanks for this awesome tool! My only question is, is this line supposed to be this way?
transcription[-1] = text
If I say a long phrase, the beginning parts are overwritten until I stop. Changing it to
transcription[-1] += text
seems to yield results I understand.
Thanks!
The text was updated successfully, but these errors were encountered:
First, increase the --record_timeout argument. This is the maximum length of a recording file.
--record_timeout
Then, set the pause_threshold (pause in seconds to determine when the speech ends) of the recorder like this:
pause_threshold
recorder.pause_threshold = 1 # waits one second of silence before determining if the speech ended
Sorry, something went wrong.
No branches or pull requests
Hi there! Thanks for this awesome tool! My only question is, is this line supposed to be this way?
transcription[-1] = text
If I say a long phrase, the beginning parts are overwritten until I stop. Changing it to
transcription[-1] += text
seems to yield results I understand.
Thanks!
The text was updated successfully, but these errors were encountered: