Skip to content

Commit

Permalink
🐛 修复分块重绘和视频转绘出错
Browse files Browse the repository at this point in the history
  • Loading branch information
zhulinyv committed Sep 16, 2024
1 parent bcb3b5c commit cbcc6c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/movie2movie.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ def m2m(
False,
prompt,
negative,
resolution,
int((resolution.split("x"))[0]),
int((resolution.split("x"))[1]),
scale,
sampler,
noise_schedule,
Expand Down
3 changes: 2 additions & 1 deletion src/tiled_upscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def tile_upscale(image, img_path, positive, negative, strength, engine):
False,
positive,
negative,
"1024x1024",
1024,
1024,
env.scale,
env.sampler,
env.noise_schedule,
Expand Down

0 comments on commit cbcc6c7

Please sign in to comment.