fffiloni commited on
Commit
f8190cb
·
verified ·
1 Parent(s): e3a4c9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -12
app.py CHANGED
@@ -3,6 +3,7 @@ import cv2
3
  import numpy as np
4
  import torch
5
  from diffusers import DiffusionPipeline, DPMSolverMultistepScheduler
 
6
 
7
  pipe = DiffusionPipeline.from_pretrained("cerspense/zeroscope_v2_576w", torch_dtype=torch.float16)
8
  pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
@@ -13,21 +14,15 @@ def export_to_video(video_frames):
13
  video_frames = np.array(video_frames)
14
  video_frames = (video_frames * 255).astype(np.uint8)
15
 
16
- # Get the dimensions of the frames
17
- height, width, channels = video_frames.shape[2:]
18
 
19
- # Define the video writer object
20
- fourcc = cv2.VideoWriter_fourcc(*'mp4v') # Codec for .mp4 files
21
  fps = 24 # Frames per second
22
- video_writer = cv2.VideoWriter('output_video.mp4', fourcc, fps, (width, height))
23
 
24
- # Write each frame to the video
25
- for i in range(video_frames.shape[0]):
26
- frame = video_frames[i]
27
- video_writer.write(frame)
28
-
29
- # Release the video writer object
30
- video_writer.release()
31
 
32
  print("Video has been created successfully.")
33
  return 'output_video.mp4'
 
3
  import numpy as np
4
  import torch
5
  from diffusers import DiffusionPipeline, DPMSolverMultistepScheduler
6
+ from moviepy.editor import ImageSequenceClip
7
 
8
  pipe = DiffusionPipeline.from_pretrained("cerspense/zeroscope_v2_576w", torch_dtype=torch.float16)
9
  pipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)
 
14
  video_frames = np.array(video_frames)
15
  video_frames = (video_frames * 255).astype(np.uint8)
16
 
17
+ # Convert frames from (N, H, W, C) to list of (H, W, C)
18
+ frames_list = [frame for frame in video_frames]
19
 
20
+ # Create a video clip from the frames
 
21
  fps = 24 # Frames per second
22
+ clip = ImageSequenceClip(frames_list, fps=fps)
23
 
24
+ # Write the video file
25
+ clip.write_videofile("output_video.mp4", codec="libx264")
 
 
 
 
 
26
 
27
  print("Video has been created successfully.")
28
  return 'output_video.mp4'