Forráskód Böngészése

using faster default models

KoljaB 7 hónapja
szülő
commit
bcea7c9857
2 módosított fájl, 69 hozzáadás és 24 törlés
  1. 23 1
      tests/realtimestt_test.py
  2. 46 23
      tests/realtimestt_test_stereomix.py

+ 23 - 1
tests/realtimestt_test.py

@@ -1,6 +1,28 @@
+EXTENDED_LOGGING = False
+
 if __name__ == '__main__':
 
-    EXTENDED_LOGGING = False
+    import subprocess
+    import sys
+
+    def install_rich():
+        subprocess.check_call([sys.executable, "-m", "pip", "install", "rich"])
+
+    try:
+        import rich
+    except ImportError:
+        user_input = input("This demo needs the 'rich' library, which is not installed.\nDo you want to install it now? (y/n): ")
+        if user_input.lower() == 'y':
+            try:
+                install_rich()
+                import rich
+                print("Successfully installed 'rich'.")
+            except Exception as e:
+                print(f"An error occurred while installing 'rich': {e}")
+                sys.exit(1)
+        else:
+            print("The program requires the 'rich' library to run. Exiting...")
+            sys.exit(1)
 
     if EXTENDED_LOGGING:
         import logging

+ 46 - 23
tests/realtimestt_test_stereomix.py

@@ -1,33 +1,56 @@
-import os
-import sys
-import threading
-import time
-import pyaudio
-from rich.console import Console
-from rich.live import Live
-from rich.text import Text
-from rich.panel import Panel
-from rich.spinner import Spinner
-from rich.progress import Progress, SpinnerColumn, TextColumn
-from colorama import Fore, Style, init as colorama_init
-
-from RealtimeSTT import AudioToTextRecorder 
-
-# Configuration Constants
-LOOPBACK_DEVICE_NAME = "stereomix"
-LOOPBACK_DEVICE_HOST_API = 0
-BUFFER_SIZE = 512 
-AUDIO_FORMAT = pyaudio.paInt16
-CHANNELS = 1
-RATE = 16000
-
 EXTENDED_LOGGING = False
 
 def main():
+
+    import subprocess
+    import sys
+
+    def install_rich():
+        subprocess.check_call([sys.executable, "-m", "pip", "install", "rich"])
+
+    try:
+        import rich
+    except ImportError:
+        user_input = input("This demo needs the 'rich' library, which is not installed.\nDo you want to install it now? (y/n): ")
+        if user_input.lower() == 'y':
+            try:
+                install_rich()
+                import rich
+                print("Successfully installed 'rich'.")
+            except Exception as e:
+                print(f"An error occurred while installing 'rich': {e}")
+                sys.exit(1)
+        else:
+            print("The program requires the 'rich' library to run. Exiting...")
+            sys.exit(1)
+
     if EXTENDED_LOGGING:
         import logging
         logging.basicConfig(level=logging.DEBUG)
 
+    import os
+    import sys
+    import threading
+    import time
+    import pyaudio
+    from rich.console import Console
+    from rich.live import Live
+    from rich.text import Text
+    from rich.panel import Panel
+    from rich.spinner import Spinner
+    from rich.progress import Progress, SpinnerColumn, TextColumn
+    from colorama import Fore, Style, init as colorama_init
+
+    from RealtimeSTT import AudioToTextRecorder 
+
+    # Configuration Constants
+    LOOPBACK_DEVICE_NAME = "stereomix"
+    LOOPBACK_DEVICE_HOST_API = 0
+    BUFFER_SIZE = 512 
+    AUDIO_FORMAT = pyaudio.paInt16
+    CHANNELS = 1
+    RATE = 16000
+
     console = Console()
     console.print("System initializing, please wait")