From 5d76608bb6b39ea7ed95b3a8dc26fece421a6398 Mon Sep 17 00:00:00 2001 From: nex Date: Thu, 16 Mar 2023 23:38:03 +0000 Subject: [PATCH] dont set voice property? --- cogs/other.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/other.py b/cogs/other.py index 9b41f04..c7e0646 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -835,7 +835,7 @@ class OtherCog(commands.Cog): target_fn = f"/tmp/jimmy-tts-{ctx.user.id}-{ctx.interaction.id}.mp3" _bot.console.log("Starting pyttsx3") engine = pyttsx3.init() - engine.setProperty("voice", "english-north") + # engine.setProperty("voice", "english-north") engine.setProperty("rate", 150) _io = BytesIO() _bot.console.log("Saving to file")