Skip to content

Commit ea994c7

Browse files
authoredJan 21, 2025
Merge pull request #652 from erfanasgari21/moviepy-v2
Update code and requirements to support Moviepy v2
2 parents c1ca70b + aa12ed3 commit ea994c7

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed
 

‎inference/gradio_composite_demo/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pip install -r requirements.txt
4141
## Running the code
4242

4343
```bash
44-
python gradio_web_demo.py
44+
python app.py
4545
```
4646

4747

‎inference/gradio_composite_demo/app.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
from diffusers.image_processor import VaeImageProcessor
3232
from openai import OpenAI
33-
import moviepy.editor as mp
33+
from moviepy import VideoFileClip
3434
import utils
3535
from rife_model import load_rife_model, rife_inference_with_latents
3636
from huggingface_hub import hf_hub_download, snapshot_download
@@ -271,9 +271,9 @@ def infer(
271271

272272

273273
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)
277277
gif_path = video_path.replace(".mp4", ".gif")
278278
clip.write_gif(gif_path, fps=8)
279279
return gif_path

‎inference/gradio_composite_demo/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ gradio>=5.4.0
1515
imageio>=2.34.2
1616
imageio-ffmpeg>=0.5.1
1717
openai>=1.45.0
18-
moviepy>=1.0.3
18+
moviepy>=2.0.0
1919
pillow==9.5.0

‎inference/gradio_web_demo.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from diffusers.utils import export_to_video
2121
from datetime import datetime, timedelta
2222
from openai import OpenAI
23-
import moviepy.editor as mp
23+
from moviepy import VideoFileClip
2424

2525
pipe = CogVideoXPipeline.from_pretrained("THUDM/CogVideoX-5b", torch_dtype=torch.bfloat16).to("cuda")
2626

@@ -117,9 +117,9 @@ def save_video(tensor):
117117

118118

119119
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)
123123
gif_path = video_path.replace(".mp4", ".gif")
124124
clip.write_gif(gif_path, fps=8)
125125
return gif_path

‎requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ gradio>=5.5.0
1010
imageio>=2.35.1
1111
imageio-ffmpeg>=0.5.1
1212
openai>=1.54.0
13-
moviepy>=1.0.3
13+
moviepy>=2.0.0
1414
scikit-video>=1.1.11
15-
pydantic>=2.10.3
15+
pydantic>=2.10.3

‎tools/llm_flux_cogvideox/gradio_page.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from datetime import datetime, timedelta
1313
import threading
1414
import time
15-
import moviepy.editor as mp
15+
from moviepy import VideoFileClip
1616

1717
torch.set_float32_matmul_precision("high")
1818

@@ -140,9 +140,9 @@ def save_video(tensor):
140140

141141

142142
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)
146146
gif_path = video_path.replace(".mp4", ".gif")
147147
clip.write_gif(gif_path, fps=8)
148148
return gif_path

‎tools/replicate/cog.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ build:
2626
- imageio>=2.35.1
2727
- imageio-ffmpeg>=0.5.1
2828
- openai>=1.45.0
29-
- moviepy>=1.0.3
29+
- moviepy>=2.0.0
3030
- pillow==9.5.0
3131
- pydantic==1.10.7
3232
run:

0 commit comments

Comments
 (0)
Please sign in to comment.