Update vid2vid.py
Browse files- vid2vid.py +1 -1
vid2vid.py
CHANGED
|
@@ -14,7 +14,7 @@ OUTPUT_VIDEO = "result.mp4"
|
|
| 14 |
|
| 15 |
PROMPT = "marble statue"
|
| 16 |
N_PROMPT = "(deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime:1.4), text, close up, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck"
|
| 17 |
-
w,h =
|
| 18 |
|
| 19 |
START_FROM_IND = 0 # index of a frame to start a processing from. Might be helpful with long animations where you need to restart the script multiple times
|
| 20 |
SAVE_FRAMES = True # saves individual frames into 'out' folder if set True. Again might be helpful with long animations
|
|
|
|
| 14 |
|
| 15 |
PROMPT = "marble statue"
|
| 16 |
N_PROMPT = "(deformed iris, deformed pupils, semi-realistic, cgi, 3d, render, sketch, cartoon, drawing, anime:1.4), text, close up, cropped, out of frame, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck"
|
| 17 |
+
w,h = 720, 1280 # Width and height of the processed image. Note that actual image processed would be a W x H resolution.
|
| 18 |
|
| 19 |
START_FROM_IND = 0 # index of a frame to start a processing from. Might be helpful with long animations where you need to restart the script multiple times
|
| 20 |
SAVE_FRAMES = True # saves individual frames into 'out' folder if set True. Again might be helpful with long animations
|