sandhyasinha655 commited on
Commit
2a65731
·
verified ·
1 Parent(s): 6c0c713

Create globals.py

Browse files
Files changed (1) hide show
  1. roop/globals.py +21 -0
roop/globals.py ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # roop/globals.py
2
+
3
+ source_path = None
4
+ target_path = None
5
+ output_path = None
6
+ headless = False
7
+ frame_processors = []
8
+ keep_fps = False
9
+ keep_frames = False
10
+ skip_audio = False
11
+ many_faces = False
12
+ reference_face_position = 0
13
+ reference_frame_number = 0
14
+ similar_face_distance = 0.85
15
+ temp_frame_format = 'png'
16
+ temp_frame_quality = 0
17
+ output_video_encoder = 'libx264'
18
+ output_video_quality = 35
19
+ max_memory = None
20
+ execution_providers = ['cpu']
21
+ execution_threads = 1