Fixed cutting end of sound, developing micro restreaming

This commit is contained in:
BarsTiger
2022-12-09 17:46:15 +02:00
parent 4d698235a1
commit 1bf045ced9
12 changed files with 139 additions and 10 deletions

View File

@@ -7,3 +7,8 @@ from dataclasses_json import dataclass_json
class ConfigModel:
theme: str
volume: int
out_device: str
preview_device: str
in_micro: str
out_micro: str
restream: bool

View File

@@ -8,7 +8,12 @@ class Config:
def default():
return {
"theme": "Dark gray",
"volume": 100
"volume": 100,
"out_device": str(),
"preview_device": str(),
"in_micro": str(),
"out_micro": str(),
"restream": False
}
@staticmethod