Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Last active March 26, 2019 05:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhirockzz/dc580a5edc65add1f668c84f63c9b90c to your computer and use it in GitHub Desktop.
Save abhirockzz/dc580a5edc65add1f668c84f63c9b90c to your computer and use it in GitHub Desktop.
...
flite := exec.Command("flite", "-t", text, "-o", outputLocation)
err := flite.Run()
if err != nil {
errMsg := "failed due to " + err.Error()
log.Println(errMsg)
out.Write([]byte(errMsg))
return
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment