Skip to content

Commit

Permalink
Fix TTS
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf authored Aug 2, 2024
1 parent 71755fb commit b528b51
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions core.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,17 @@ def run_tts_script(
os.remove(output_tts_path)

command_tts = [
python,
tts_script_path,
tts_text,
tts_voice,
tts_rate,
output_tts_path,
*map(
str,
[
python,
tts_script_path,
tts_text,
tts_voice,
tts_rate,
output_tts_path,
],
),
]
subprocess.run(command_tts)
infer_pipeline = import_voice_converter()
Expand Down

0 comments on commit b528b51

Please sign in to comment.