Fixed cutting end of sound, developing micro restreaming
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user