Skip to content

Commit 90039cf

Browse files
authored
Merge pull request #74 from nateraw/quickfixes
Couple quick bugfixes
2 parents b7e176d + d4f2258 commit 90039cf

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ video_path = pipeline.walk(
105105
num_interpolation_steps=num_interpolation_steps,
106106
audio_filepath='audio.mp3',
107107
audio_start_sec=audio_offsets[0],
108+
fps=fps,
108109
height=512, # use multiples of 64 if > 512. Multiples of 8 if < 512.
109110
width=512, # use multiples of 64 if > 512. Multiples of 8 if < 512.
110111
output_dir='dreams', # Where images/videos will be saved

stable_diffusion_videos/image_generation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ def generate_images(
176176
eta=eta,
177177
height=height,
178178
width=width,
179+
output_type="pil" if not upsample else "numpy",
179180
)['sample']
180181
if upsample:
181182
images = []

0 commit comments

Comments
 (0)