-
Notifications
You must be signed in to change notification settings - Fork 44
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
Why is the chunk_size set to 20kB? #48
Comments
I don't think there's a specific reason why it has to be 20KB. |
It's possible to push it to 31kB but after that I get
see e.g. the comment in this Node.js fork too: https://github.com/albertreed/google-assistant/blob/master/components/conversation.js#L28 At the moment |
Looking at the proto definition for the field it's of type To speculate, 31KB is very similar to 2^15 (32768 bytes), so it may be an encoding limitation and may provide the reason for a ceiling of |
I obtain better results when the |
Yeah you can open a PR for this. I'm not entirely sure what you mean by 'better results', but it may make sense to match the delay. |
By better results I mean the overall execution time of
so about 1s better which is noticeable. |
in
audio_input_file.cc
thechunk_size
is set to 20kB. Why?Is there any official documentation/guidelines explaining this?
The text was updated successfully, but these errors were encountered: