moviepy
moviepy copied to clipboard
Video editing with Python
``` audio = AudioFileClip(audio_path) duration = audio.duration image = ImageClip(image).set_duration(duration) image = image.set_audio(audio) image.write_videofile(video_file_name, fps=25, remove_temp=True) ``` ### Actual Behavior ``` Moviepy - Building video /tmp/new-20200129050549.mp4. MoviePy - Writing audio...
I can't render video using a image mask, can anyone help me out with this The error raised is: **ValueError: operands could not be broadcast together with shapes (850,850,3) (850,850)**...
Hi there - I am getting a similar error to this post: https://github.com/Zulko/moviepy/issues/938 However, I am using the newest version of Moviepy, which is mentioned as the solution. The program...
#### Expected Behavior I am clipping a video and then export the clip using write_videofile to write to a mp4 file. When the codec='libx264' and audio_codec='aac' The alignment between video...
Basically [this link from stack overflow](https://stackoverflow.com/questions/73177978/can-moviepy-be-used-without-reencoding-video) describes what I want to achieve. I wish to add an audio track to an existing movie file **without re-encodeing the video**. A straight...
#### Expected Behavior ```video = CompositeVideoClip([background, overlays])``` When ```background``` and ```overlays``` are both ```CompositeVideoClip``` objects, the resulting new composite will often fail to contain the video elements of the latter....
#### Expected Behavior This code works fine outside flask. A correct video is generated in the disk and I can playback it properly with normal playback tools in Windows. ####...
Hi I have been trying to make ImageClips work, but nothing so far. I am automating video editing and using only video and ondy everything seems to work just great....
Yesterdays update of imageio has appeared to have broken the import of moviepy **if I run this in google colab:** _!pip install imageio-ffmpeg from moviepy import editor_ **I get:** RuntimeError:...
#### Expected Behavior It's supposed to print the progress on a single line. C:\Users\edgar\Desktop>python test.py >56.00% (56 of 100) #### Actual Behavior But when importing it, escape characters are ignored....