diff --git a/aques.py b/aques.py index aa17fe5..610a4fc 100644 --- a/aques.py +++ b/aques.py @@ -4,8 +4,8 @@ import subprocess class Aques: @classmethod - def main (cls, text: str) -> bytearray | None: - return cls.__synthe_utf8 (text, 100, "./phont/ar_mf2.phont") + def main (cls, text: str, goatoh_mode: bool = False) -> bytearray | None: + return cls.__synthe_utf8 (text, 100, './phont/ar_m5.phont' if goatoh_mode else './phont/ar_mf2.phont') @staticmethod def __synthe_utf8 (text, speed, phont_file = None) -> bytearray | None: diff --git a/main.py b/main.py index b8d870e..794a14f 100644 --- a/main.py +++ b/main.py @@ -108,7 +108,7 @@ class Main: time.sleep (1.5) try: - wav: bytearray | None = Aques.main (answer) + wav: bytearray | None = Aques.main (answer, goatoh_mode) except: wav: None = None if wav is not None: @@ -130,5 +130,5 @@ class Main: if __name__ == '__main__': - Main.main ((len (sys.argv) > 1) and sys.argv[1] == '-g') + Main.main ((len (sys.argv) > 1) and (sys.argv[1] == '-g'))