Spaces:
Sleeping
Sleeping
File size: 883 Bytes
5c7b581 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
import os
import sys
import subprocess
python = sys.executable
def run_tts_script(
tts_text: str,
tts_voice: str,
tts_rate: int,
output_tts_path: str,
):
tts_script_path = os.path.join("tts.py")
if os.path.exists(output_tts_path):
os.remove(output_tts_path)
command_tts = [
*map(
str,
[
python,
tts_script_path,
tts_text,
tts_voice,
tts_rate,
output_tts_path,
],
),
]
print(python)
print(tts_script_path)
print(tts_text)
print(tts_rate)
print(output_tts_path)
subprocess.run(command_tts)
def read_text_from_file(file_path):
with open(file_path, "r", encoding="utf-8") as file:
return file.read().strip()
|