-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [Bugfix] Add back the support for --many-faces (#771) * Cleanup many-faces vs reference face, Fix float on reference frame, Introduce globals typing * Fix headless * Fix attribute typing error * Bump version --------- Co-authored-by: Barak Segal <barak353@gmail.com>
- Loading branch information
Showing
6 changed files
with
31 additions
and
31 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
from typing import List | ||
from typing import List, Optional | ||
|
||
source_path = None | ||
target_path = None | ||
output_path = None | ||
headless = None | ||
source_path: Optional[str] = None | ||
target_path: Optional[str] = None | ||
output_path: Optional[str] = None | ||
headless: Optional[bool] = None | ||
frame_processors: List[str] = [] | ||
keep_fps = None | ||
keep_frames = None | ||
skip_audio = None | ||
many_faces = None | ||
reference_face_position = None | ||
reference_frame_number = None | ||
similar_face_distance = None | ||
temp_frame_format = None | ||
temp_frame_quality = None | ||
output_video_encoder = None | ||
output_video_quality = None | ||
max_memory = None | ||
keep_fps: Optional[bool] = None | ||
keep_frames: Optional[bool] = None | ||
skip_audio: Optional[bool] = None | ||
many_faces: Optional[bool] = None | ||
reference_face_position: Optional[int] = None | ||
reference_frame_number: Optional[int] = None | ||
similar_face_distance: Optional[float] = None | ||
temp_frame_format: Optional[str] = None | ||
temp_frame_quality: Optional[int] = None | ||
output_video_encoder: Optional[str] = None | ||
output_video_quality: Optional[int] = None | ||
max_memory: Optional[int] = None | ||
execution_providers: List[str] = [] | ||
execution_threads = None | ||
log_level = 'error' | ||
execution_threads: Optional[int] = None | ||
log_level: str = 'error' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
name = 'roop' | ||
version = '1.3.0' | ||
version = '1.3.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters