uglin commited on
Commit
ca92d21
1 Parent(s): 018605c

Update roop/core.py

Browse files
Files changed (1) hide show
  1. roop/core.py +1 -1
roop/core.py CHANGED
@@ -37,7 +37,7 @@ def parse_args() -> None:
37
  program.add_argument('-s', '--source', help='select an source image', dest='source_path')
38
  program.add_argument('-t', '--target', help='select an target image or video', dest='target_path')
39
  program.add_argument('-o', '--output', help='select output file or directory', dest='output_path')
40
- program.add_argument('--frame-processor', help='frame processors (choices: face_swapper, face_enhancer, ...)', dest='frame_processor', default=['face_swapper'], nargs='+'
41
  program.add_argument('--keep-fps', help='keep original fps', dest='keep_fps', action='store_true', default=False)
42
  program.add_argument('--keep-audio', help='keep original audio', dest='keep_audio', action='store_true', default=True)
43
  program.add_argument('--keep-frames', help='keep temporary frames', dest='keep_frames', action='store_true', default=False)
 
37
  program.add_argument('-s', '--source', help='select an source image', dest='source_path')
38
  program.add_argument('-t', '--target', help='select an target image or video', dest='target_path')
39
  program.add_argument('-o', '--output', help='select output file or directory', dest='output_path')
40
+ program.add_argument('--frame-processor', help='frame processors (choices: face_swapper, face_enhancer, ...)', dest='frame_processor', default=['face_swapper'], nargs='+')
41
  program.add_argument('--keep-fps', help='keep original fps', dest='keep_fps', action='store_true', default=False)
42
  program.add_argument('--keep-audio', help='keep original audio', dest='keep_audio', action='store_true', default=True)
43
  program.add_argument('--keep-frames', help='keep temporary frames', dest='keep_frames', action='store_true', default=False)