Skip to content

Commit

Permalink
Minor wording cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
henryruhs committed Jul 16, 2023
1 parent 77cd226 commit 14208e8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions roop/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def start() -> None:
frame_processor.process_image(roop.globals.source_path, roop.globals.output_path, roop.globals.output_path)
frame_processor.post_process()
release_resources()
# validate
if is_image(roop.globals.target_path):
update_status('Processing to image succeed!')
else:
Expand All @@ -176,12 +177,12 @@ def start() -> None:
release_resources()
# handles fps
if roop.globals.keep_fps:
update_status('Detecting fps...')
update_status('Detecting FPS...')
fps = detect_fps(roop.globals.target_path)
update_status(f'Creating video with {fps} fps...')
update_status(f'Creating video with {fps} FPS...')
create_video(roop.globals.target_path, fps)
else:
update_status('Creating video with 30.0 fps...')
update_status('Creating video with 30 FPS...')
create_video(roop.globals.target_path)
# handle audio
if roop.globals.skip_audio:
Expand Down

0 comments on commit 14208e8

Please sign in to comment.