mirror of
https://github.com/facefusion/facefusion.git
synced 2026-07-26 20:11:22 +02:00
make stream the default
This commit is contained in:
+1
-1
@@ -100,7 +100,7 @@ def pre_check() -> bool:
|
||||
def common_pre_check() -> bool:
|
||||
content_analyser_content = inspect.getsource(content_analyser).encode()
|
||||
|
||||
return hash_helper.create_hash(content_analyser_content) == '065886fc'
|
||||
return hash_helper.create_hash(content_analyser_content) == '0922c180'
|
||||
|
||||
|
||||
def processors_pre_check() -> bool:
|
||||
|
||||
@@ -25,7 +25,7 @@ def create_workflow_program() -> ArgumentParser:
|
||||
program = ArgumentParser(add_help = False)
|
||||
group_workflow = program.add_argument_group('workflow')
|
||||
group_workflow.add_argument('--workflow-mode', help = translator.get('help.workflow_mode'), default = config.get_str_value('workflow', 'workflow_mode', 'auto'), choices = facefusion.choices.workflow_modes)
|
||||
group_workflow.add_argument('--workflow-strategy', help = translator.get('help.workflow_strategy'), default = config.get_str_value('workflow', 'workflow_strategy', 'disk'), choices = facefusion.choices.workflow_strategies)
|
||||
group_workflow.add_argument('--workflow-strategy', help = translator.get('help.workflow_strategy'), default = config.get_str_value('workflow', 'workflow_strategy', 'stream'), choices = facefusion.choices.workflow_strategies)
|
||||
job_store.register_step_keys([ 'workflow_mode', 'workflow_strategy' ])
|
||||
return program
|
||||
|
||||
|
||||
Reference in New Issue
Block a user