diff --git a/Client/__pycache__/appcomponent.cpython-310.pyc b/Client/__pycache__/appcomponent.cpython-310.pyc index 2dd4eb4..8063ad7 100644 Binary files a/Client/__pycache__/appcomponent.cpython-310.pyc and b/Client/__pycache__/appcomponent.cpython-310.pyc differ diff --git a/Client/appcomponent.py b/Client/appcomponent.py index f26a6b6..9a15bc8 100644 --- a/Client/appcomponent.py +++ b/Client/appcomponent.py @@ -19,7 +19,7 @@ import dearpygui.dearpygui as dpg from utils import * -librarylist = ["Opencv (opencv.org)", "PyOgg (TeamPyOgg) (Forked)", "DearPyGui (hoffstadt)"] +librarylist = ["Opencv (opencv.org)", "PyOgg (TeamPyOgg) (Forked)", "DearPyGui (hoffstadt)", "LZ4 (python-lz4)", "PyAudio (CristiFati)"] def window(self): with dpg.window(label="IDRB", width=320, height=520, no_close=True): diff --git a/Server/Encoder.py b/Server/Encoder.py index 91a1986..8c42c97 100644 --- a/Server/Encoder.py +++ b/Server/Encoder.py @@ -36,9 +36,9 @@ for i in range(p.get_device_count()): break # Create a shared queue for encoded audio packets -channel1 = Queue() +channel1 = Queue(maxsize=128) -channel2 = Queue() +channel2 = Queue(maxsize=128) channel1option = { "Bitrates": 64000, diff --git a/Server/__pycache__/Encoder.cpython-310.pyc b/Server/__pycache__/Encoder.cpython-310.pyc index d5208db..05948fd 100644 Binary files a/Server/__pycache__/Encoder.cpython-310.pyc and b/Server/__pycache__/Encoder.cpython-310.pyc differ diff --git a/Server/__pycache__/Settings.cpython-310.pyc b/Server/__pycache__/Settings.cpython-310.pyc index d962345..5355bfc 100644 Binary files a/Server/__pycache__/Settings.cpython-310.pyc and b/Server/__pycache__/Settings.cpython-310.pyc differ diff --git a/Server/__pycache__/tools.cpython-310.pyc b/Server/__pycache__/tools.cpython-310.pyc index df7695c..e34e3b6 100644 Binary files a/Server/__pycache__/tools.cpython-310.pyc and b/Server/__pycache__/tools.cpython-310.pyc differ