patch-3.7.1 (#1178)

* patch 3.7.1

* fix bug for 2 processors on image to image pipeline (#1177)

* reduce default value of target_frame_amount

* restore old performance

* restore old performance

* restore old performance

* restore old performance
This commit is contained in:
Henry Ruhs
2026-07-05 16:43:36 +02:00
committed by GitHub
parent b8f80460cf
commit 3f81a8a784
5 changed files with 21 additions and 14 deletions
+1 -1
View File
@@ -177,7 +177,7 @@ def create_frame_extraction_program() -> ArgumentParser:
def create_frame_distribution_program() -> ArgumentParser:
program = ArgumentParser(add_help = False)
group_frame_distribution = program.add_argument_group('frame distribution')
group_frame_distribution.add_argument('--target-frame-amount', help = translator.get('help.target_frame_amount'), type = int, default = config.get_int_value('frame_distribution', 'target_frame_amount', '5'), choices = facefusion.choices.target_frame_amount_range, metavar = create_int_metavar(facefusion.choices.target_frame_amount_range))
group_frame_distribution.add_argument('--target-frame-amount', help = translator.get('help.target_frame_amount'), type = int, default = config.get_int_value('frame_distribution', 'target_frame_amount', '2'), choices = facefusion.choices.target_frame_amount_range, metavar = create_int_metavar(facefusion.choices.target_frame_amount_range))
job_store.register_step_keys([ 'target_frame_amount' ])
return program