nateraw / stable-diffusion-videos

Create 🔥 videos with Stable Diffusion by exploring the latent space and morphing between text prompts
Apache License 2.0
4.4k stars 421 forks source link

Multiple prompts (more than 2) and/or over-ride file saving naming scheme #90

Closed TheOneTrueGuy closed 1 year ago

TheOneTrueGuy commented 1 year ago

Love this so far but I'm running into a problematic limitation. I have large libraries of prompts designed to be sequentially connected. I'd like to be able to interpolate in sequence through 40 or 50 prompts. I can do this now by looping the pipe.walk() call and stepping through the list of prompts always placing the last prompt in the first prompt position with each iteration and even control the saving directory but I end up with dozens of separate directories that then have to be un-marshaled and compile their files. Much bother. I can keep track of my own file numbers if it helps but on long runs (400 or 500 prompts) the current system is just unworkable for me. Point me in the right direction in your code and I could try fixing it myself. Thanks for everything you've done so far!

TheOneTrueGuy commented 1 year ago

ok figured out that I had to have seeds for every prompt, so I can enter multiple prompts but now I'm still struggling with the output file structure. Will keep studying the code.