We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7e176d + d4f2258 commit 90039cfCopy full SHA for 90039cf
README.md
@@ -105,6 +105,7 @@ video_path = pipeline.walk(
105
num_interpolation_steps=num_interpolation_steps,
106
audio_filepath='audio.mp3',
107
audio_start_sec=audio_offsets[0],
108
+ fps=fps,
109
height=512, # use multiples of 64 if > 512. Multiples of 8 if < 512.
110
width=512, # use multiples of 64 if > 512. Multiples of 8 if < 512.
111
output_dir='dreams', # Where images/videos will be saved
stable_diffusion_videos/image_generation.py
@@ -176,6 +176,7 @@ def generate_images(
176
eta=eta,
177
height=height,
178
width=width,
179
+ output_type="pil" if not upsample else "numpy",
180
)['sample']
181
if upsample:
182
images = []
0 commit comments