From 3e7645e65c54345a2301a98f18d8631373933467 Mon Sep 17 00:00:00 2001 From: henryruhs Date: Sun, 26 Jul 2026 14:04:47 +0200 Subject: [PATCH] make stream the default --- facefusion/core.py | 2 +- facefusion/program.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/facefusion/core.py b/facefusion/core.py index f131b7be..bc12d6bd 100755 --- a/facefusion/core.py +++ b/facefusion/core.py @@ -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: diff --git a/facefusion/program.py b/facefusion/program.py index f0efda40..6e7258ee 100755 --- a/facefusion/program.py +++ b/facefusion/program.py @@ -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