1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-13 11:29:51 +03:00
This commit is contained in:
3djc 2017-05-31 10:47:20 +02:00
parent d5e42992d2
commit 85bb6ea3a7
2 changed files with 5 additions and 1 deletions

View file

@ -39,6 +39,8 @@ def generate(str, filename):
os.system(command.encode('utf-8')) os.system(command.encode('utf-8'))
command = "sox %s -r 32000 %s" % (output, filename) command = "sox %s -r 32000 %s" % (output, filename)
os.system(command.encode('utf-8')) os.system(command.encode('utf-8'))
command = "rm -f output.mp3"
os.system(command.encode('utf-8'))
################################################################ ################################################################
@ -84,7 +86,7 @@ if __name__ == "__main__":
directory = "pt" directory = "pt"
voice = "pt-PT" voice = "pt-PT"
else: else:
print("which language?") print("which language?")
exit() exit()

View file

@ -39,6 +39,8 @@ def generate(str, filename):
os.system(command.encode('utf-8')) os.system(command.encode('utf-8'))
command = "sox %s -r 32000 %s" % (output, filename) command = "sox %s -r 32000 %s" % (output, filename)
os.system(command.encode('utf-8')) os.system(command.encode('utf-8'))
command = "rm -f output.mp3"
os.system(command.encode('utf-8'))
################################################################ ################################################################