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
The following error occurs when I try playing audio using the Native handler more than once.
SIGSEGV: segmentation violation PC=0x18a4e9334 m=4 sigcode=2 addr=0x0 signal arrived during cgo execution
Specifically, the first TTS audio file plays, and then the error occurs without playing the second audio file.
This is my code:
package main import ( htgotts "github.com/hegedustibor/htgo-tts" handlers "github.com/hegedustibor/htgo-tts/handlers" voices "github.com/hegedustibor/htgo-tts/voices" ) func TTS() { speech := htgotts.Speech{Folder: "audio", Language: voices.English, Handler: &handlers.Native{}} speech.Speak("hello") speech.Speak("goodbye") } func main() { TTS() }
How can I fix this?
The text was updated successfully, but these errors were encountered:
I'll suggest to try with MPlayer and maybe call the method "Speak" 1 time only
Sorry, something went wrong.
No branches or pull requests
The following error occurs when I try playing audio using the Native handler more than once.
SIGSEGV: segmentation violation
PC=0x18a4e9334 m=4 sigcode=2 addr=0x0
signal arrived during cgo execution
Specifically, the first TTS audio file plays, and then the error occurs without playing the second audio file.
This is my code:
How can I fix this?
The text was updated successfully, but these errors were encountered: