12 lines
147 B
Python
12 lines
147 B
Python
import tts
|
|
from textgen import tool_funcs
|
|
|
|
t = tts.TTS()
|
|
|
|
save_path = 'audio/weather.wav'
|
|
|
|
t.create_audio(tool_funcs.get_high_low(), save_path)
|
|
|
|
|
|
|