File tree 7 files changed +17
-17
lines changed
7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ pip install -r requirements.txt
41
41
## Running the code
42
42
43
43
``` bash
44
- python gradio_web_demo .py
44
+ python app .py
45
45
```
46
46
47
47
Original file line number Diff line number Diff line change 30
30
31
31
from diffusers .image_processor import VaeImageProcessor
32
32
from openai import OpenAI
33
- import moviepy . editor as mp
33
+ from moviepy import VideoFileClip
34
34
import utils
35
35
from rife_model import load_rife_model , rife_inference_with_latents
36
36
from huggingface_hub import hf_hub_download , snapshot_download
@@ -271,9 +271,9 @@ def infer(
271
271
272
272
273
273
def convert_to_gif (video_path ):
274
- clip = mp . VideoFileClip (video_path )
275
- clip = clip .set_fps (8 )
276
- clip = clip .resize (height = 240 )
274
+ clip = VideoFileClip (video_path )
275
+ clip = clip .with_fps (8 )
276
+ clip = clip .resized (height = 240 )
277
277
gif_path = video_path .replace (".mp4" , ".gif" )
278
278
clip .write_gif (gif_path , fps = 8 )
279
279
return gif_path
Original file line number Diff line number Diff line change @@ -15,5 +15,5 @@ gradio>=5.4.0
15
15
imageio >= 2.34.2
16
16
imageio-ffmpeg >= 0.5.1
17
17
openai >= 1.45.0
18
- moviepy >= 1 .0.3
18
+ moviepy >= 2 .0.0
19
19
pillow == 9.5.0
Original file line number Diff line number Diff line change 20
20
from diffusers .utils import export_to_video
21
21
from datetime import datetime , timedelta
22
22
from openai import OpenAI
23
- import moviepy . editor as mp
23
+ from moviepy import VideoFileClip
24
24
25
25
pipe = CogVideoXPipeline .from_pretrained ("THUDM/CogVideoX-5b" , torch_dtype = torch .bfloat16 ).to ("cuda" )
26
26
@@ -117,9 +117,9 @@ def save_video(tensor):
117
117
118
118
119
119
def convert_to_gif (video_path ):
120
- clip = mp . VideoFileClip (video_path )
121
- clip = clip .set_fps (8 )
122
- clip = clip .resize (height = 240 )
120
+ clip = VideoFileClip (video_path )
121
+ clip = clip .with_fps (8 )
122
+ clip = clip .resized (height = 240 )
123
123
gif_path = video_path .replace (".mp4" , ".gif" )
124
124
clip .write_gif (gif_path , fps = 8 )
125
125
return gif_path
Original file line number Diff line number Diff line change @@ -10,6 +10,6 @@ gradio>=5.5.0
10
10
imageio >= 2.35.1
11
11
imageio-ffmpeg >= 0.5.1
12
12
openai >= 1.54.0
13
- moviepy >= 1 .0.3
13
+ moviepy >= 2 .0.0
14
14
scikit-video >= 1.1.11
15
- pydantic >= 2.10.3
15
+ pydantic >= 2.10.3
Original file line number Diff line number Diff line change 12
12
from datetime import datetime , timedelta
13
13
import threading
14
14
import time
15
- import moviepy . editor as mp
15
+ from moviepy import VideoFileClip
16
16
17
17
torch .set_float32_matmul_precision ("high" )
18
18
@@ -140,9 +140,9 @@ def save_video(tensor):
140
140
141
141
142
142
def convert_to_gif (video_path ):
143
- clip = mp . VideoFileClip (video_path )
144
- clip = clip .set_fps (8 )
145
- clip = clip .resize (height = 240 )
143
+ clip = VideoFileClip (video_path )
144
+ clip = clip .with_fps (8 )
145
+ clip = clip .resized (height = 240 )
146
146
gif_path = video_path .replace (".mp4" , ".gif" )
147
147
clip .write_gif (gif_path , fps = 8 )
148
148
return gif_path
Original file line number Diff line number Diff line change 26
26
- imageio>=2.35.1
27
27
- imageio-ffmpeg>=0.5.1
28
28
- openai>=1.45.0
29
- - moviepy>=1 .0.3
29
+ - moviepy>=2 .0.0
30
30
- pillow==9.5.0
31
31
- pydantic==1.10.7
32
32
run :
You can’t perform that action at this time.
0 commit comments