moviepy icon indicating copy to clipboard operation
moviepy copied to clipboard

Video editing with Python

Results 292 moviepy issues
Sort by recently updated
recently updated
newest added

The `__init__` function should look something like that: ```python if not any([(e is None) for e in ends]): self.duration = max(ends) self.end = max(ends) elif not any([(d is None) for...

bug

I use moviepy to read an audio from disk, and this audio is generated from text by text-to-speech. Now, I want to connect two step together without saving audio. However,...

question

link to setuptools issue: https://github.com/pypa/setuptools/issues/4519 #### Expected Behavior installing moviepy using poetry should install moviepy #### Actual Behavior installing moviepy fails with following error: ``` ** ChefBuildError Backend subprocess exited...

bug

imgPath = '62987a3062b63bdee25f1e9d67d5bd0c.png' SubBgClips = ImageClip(imgPath) .set_duration(3) An error is reported using ImageClip method. "" File "D:\Program Files\Python36\lib\site-packages\moviepy\video\tools\drawing.py", line 41, in blit new_im2[yp1:yp2, xp1:xp2] = blitted ValueError: could not broadcast...

bug
images

It is a minior correction on examples.rst documentation which replaceces "be soon" with "soon be".

**Description:** I'm encountering a SyntaxWarning: invalid escape sequence error while using MoviePy in my Django project. The error details are provided in the screenshot below. **Error Screenshot:** ![bug](https://github.com/user-attachments/assets/57867524-f280-4a07-8d80-d6de366b22e1) **Specifications:** -...

bug

'# Load Excel data os.chdir(wd_raiz) df = pd.read_excel("Controle.xlsx", sheet_name="Uniao_BackLog") # Initialize a DataFrame to keep track of errors erros = [] # Iterate through each row in the DataFrame for...

question

#### Steps to Reproduce the Problem ``` from moviepy.video.VideoClip import ColorClip clip = ColorClip((600, 400), color=(255, 100, 0), duration=3.1, ) clip.fps = 24 clip.write_videofile("out.mp4") loaded_clip = VideoFileClip("out.mp4") print('difference:', loaded_clip.duration -...

bug

It very strange. ```python video.set_audio(audio) # I'm sure audio is not None. video.write_videofile( self.path_vid_out, audio=True, ) ``` I have already call `set_audio`! But the output videos are without sound. The...

bug

When I use concatenate_videoclips to concatenate my video clips, I find that the concatenated clip's duration property does not align with its audio's duration property when the last video clip...