Sxela / DiscoDiffusion-Warp

DiscoDiffusion Warp
MIT License
326 stars 42 forks source link

sorted frames_in list before creating video #1

Closed Sxela closed 2 years ago

Sxela commented 2 years ago

create video cell:

framesin = (glob(batchFolder+f"/{folder}({run})*.png"))

should be

framesin = sorted(glob(batchFolder+f"/{folder}({run})*.png"))