Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,6 +6,7 @@ from rembg import remove as rm
|
|
6 |
import cv2
|
7 |
import uuid
|
8 |
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
|
|
|
9 |
|
10 |
uid=uuid.uuid4()
|
11 |
if not os.path.exists(f'{uid}-frames'): os.makedirs(f'{uid}-frames')
|
@@ -60,11 +61,15 @@ def im_2_vid(images,fps):
|
|
60 |
width= this_im.shape[1]
|
61 |
print (width,height)
|
62 |
size = (width, height)
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
68 |
def rem_bg(vid):
|
69 |
new_video_in = str(vid)
|
70 |
capture = cv2.VideoCapture(new_video_in)
|
|
|
6 |
import cv2
|
7 |
import uuid
|
8 |
from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip
|
9 |
+
import moviepy.video.io.ImageSequenceClip
|
10 |
|
11 |
uid=uuid.uuid4()
|
12 |
if not os.path.exists(f'{uid}-frames'): os.makedirs(f'{uid}-frames')
|
|
|
61 |
width= this_im.shape[1]
|
62 |
print (width,height)
|
63 |
size = (width, height)
|
64 |
+
movie_clip = moviepy.video.io.ImageSequenceClip.ImageSequenceClip(images, fps)
|
65 |
+
movie_clip.write_videofile(video_name+output_format)
|
66 |
+
#codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
|
67 |
+
#video = cv2.VideoWriter("tmp_vid.mp4", codec, fps, size)
|
68 |
+
#for img in images:
|
69 |
+
# video.write(img)
|
70 |
+
|
71 |
+
|
72 |
+
return (movie_clip)
|
73 |
def rem_bg(vid):
|
74 |
new_video_in = str(vid)
|
75 |
capture = cv2.VideoCapture(new_video_in)
|