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
@alekssamos Thank you very much for this tool, I barely know it and it is perfect for some projects I am working on.
Problem: When trying to save the audio file in a data buffer, the following error is displayed
msspeech/__init__.py, line 520, in _synthesize bc += await f.write(resp[1]) TypeError: object int can't be used in 'await' expression
My code
file = BytesIO() await mss.synthesize(data.text.strip(), file) file.seek(0)
Solution: remove the await and it worked for me.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@alekssamos Thank you very much for this tool, I barely know it and it is perfect for some projects I am working on.
Problem:
When trying to save the audio file in a data buffer, the following error is displayed
My code
Solution:
remove the await and it worked for me.
The text was updated successfully, but these errors were encountered: