remember/save switch states

This commit is contained in:
KRSHH
2024-10-14 20:32:17 +05:30
parent 72d4c9e9c4
commit 6649e2a5df
2 changed files with 110 additions and 12 deletions
+11 -12
View File
@@ -16,24 +16,23 @@ source_path = None
target_path = None
output_path = None
frame_processors: List[str] = []
keep_fps = None
keep_audio = None
keep_frames = None
many_faces = None
map_faces = None
color_correction = None # New global variable for color correction toggle
nsfw_filter = None
keep_fps = True # Initialize with default value
keep_audio = True # Initialize with default value
keep_frames = False # Initialize with default value
many_faces = False # Initialize with default value
map_faces = False # Initialize with default value
color_correction = False # Initialize with default value
nsfw_filter = False # Initialize with default value
video_encoder = None
video_quality = None
live_mirror = None
live_resizable = None
live_mirror = False # Initialize with default value
live_resizable = False # Initialize with default value
max_memory = None
execution_providers: List[str] = []
execution_threads = None
headless = None
log_level = "error"
fp_ui: Dict[str, bool] = {}
fp_ui: Dict[str, bool] = {"face_enhancer": False} # Initialize with default value
camera_input_combobox = None
webcam_preview_running = False
opacity = 100
show_fps = False
show_fps = False # Initialize with default value