You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
speech_synthesizer.speak_text_async("I'm excited to try text to speech")
65
+
speech_synthesis_result = speech_synthesizer.speak_text_async("I'm excited to try text to speech").get()
66
+
66
67
```
67
68
68
69
When you run the program, it creates a synthesized *.wav* file, which is written to the location that you specify. This result is a good example of the most basic usage. Next, you can customize output and handle the output response as an in-memory stream for working with custom scenarios.
@@ -94,8 +95,8 @@ In this example, use the `AudioDataStream` constructor to get a stream from the
0 commit comments