()
| 175 | |
| 176 | |
| 177 | def create_frame_distribution_program() -> ArgumentParser: |
| 178 | program = ArgumentParser(add_help = False) |
| 179 | group_frame_distribution = program.add_argument_group('frame distribution') |
| 180 | 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)) |
| 181 | job_store.register_step_keys([ 'target_frame_amount' ]) |
| 182 | return program |
| 183 | |
| 184 | |
| 185 | def create_output_creation_program() -> ArgumentParser: |
no test coverage detected