File size: 452 Bytes
2a65731 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# roop/globals.py
source_path = None
target_path = None
output_path = None
headless = False
frame_processors = []
keep_fps = False
keep_frames = False
skip_audio = False
many_faces = False
reference_face_position = 0
reference_frame_number = 0
similar_face_distance = 0.85
temp_frame_format = 'png'
temp_frame_quality = 0
output_video_encoder = 'libx264'
output_video_quality = 35
max_memory = None
execution_providers = ['cpu']
execution_threads = 1
|