From a4e17ce896d594e0b0db2fa7ecd1028597c5d75d Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Thu, 26 Feb 2026 22:02:25 -0500 Subject: [PATCH] Add multiprocessing.freeze_support() to fix infinite loop in compiled binary --- transcribe.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transcribe.py b/transcribe.py index c497c27..44846b1 100644 --- a/transcribe.py +++ b/transcribe.py @@ -150,4 +150,6 @@ def main(): print(f"\nError: {e}") if __name__ == "__main__": + import multiprocessing + multiprocessing.freeze_support() main()