|
|
|
@ -71,6 +71,9 @@ def parse_args() -> None:
|
|
|
|
program.add_argument('--execution-threads', help='Number of execution threads', dest='execution_threads', type=int,
|
|
|
|
program.add_argument('--execution-threads', help='Number of execution threads', dest='execution_threads', type=int,
|
|
|
|
default=suggest_execution_threads())
|
|
|
|
default=suggest_execution_threads())
|
|
|
|
program.add_argument('--headless', help='Run in headless mode', dest='headless', default=False, action='store_true')
|
|
|
|
program.add_argument('--headless', help='Run in headless mode', dest='headless', default=False, action='store_true')
|
|
|
|
|
|
|
|
program.add_argument('--enhancer_upscale_factor',
|
|
|
|
|
|
|
|
help='Sets the upscale factor for the enhancer. Only applies if `face_enhancer` is set as a frame_processor',
|
|
|
|
|
|
|
|
dest='enhancer_upscale_factor', type=int, default=1)
|
|
|
|
program.add_argument('-v', '--version', action='version',
|
|
|
|
program.add_argument('-v', '--version', action='version',
|
|
|
|
version=f'{modules.metadata.name} {modules.metadata.version}')
|
|
|
|
version=f'{modules.metadata.name} {modules.metadata.version}')
|
|
|
|
|
|
|
|
|
|
|
|
@ -100,7 +103,7 @@ def parse_args() -> None:
|
|
|
|
modules.globals.execution_providers = decode_execution_providers(args.execution_provider)
|
|
|
|
modules.globals.execution_providers = decode_execution_providers(args.execution_provider)
|
|
|
|
modules.globals.execution_threads = args.execution_threads
|
|
|
|
modules.globals.execution_threads = args.execution_threads
|
|
|
|
modules.globals.headless = args.headless
|
|
|
|
modules.globals.headless = args.headless
|
|
|
|
|
|
|
|
modules.globals.enhancer_upscale_factor = args.enhancer_upscale_factor
|
|
|
|
# Handle face enhancer tumbler
|
|
|
|
# Handle face enhancer tumbler
|
|
|
|
modules.globals.fp_ui['face_enhancer'] = 'face_enhancer' in args.frame_processor
|
|
|
|
modules.globals.fp_ui['face_enhancer'] = 'face_enhancer' in args.frame_processor
|
|
|
|
|
|
|
|
|
|
|
|
|