smail update of 1.6.1

This commit is contained in:
dharm pimsen 2024-03-03 12:52:32 +07:00
parent 85f8ac61b7
commit e7b0366c00
6 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ import dearpygui.dearpygui as dpg
from utils import * 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): def window(self):
with dpg.window(label="IDRB", width=320, height=520, no_close=True): with dpg.window(label="IDRB", width=320, height=520, no_close=True):

View File

@ -36,9 +36,9 @@ for i in range(p.get_device_count()):
break break
# Create a shared queue for encoded audio packets # Create a shared queue for encoded audio packets
channel1 = Queue() channel1 = Queue(maxsize=128)
channel2 = Queue() channel2 = Queue(maxsize=128)
channel1option = { channel1option = {
"Bitrates": 64000, "Bitrates": 64000,