moviepy
moviepy copied to clipboard
Video editing with Python
As far as I can tell, the function `ImageSequenceClip()` does not handle transparency correctly. Transparency is always removed and replaced by black. The `with_mask` argument has no effect, as far...
Hello, i want to know if there is a way with moviepy to process a specific "channel" from a EXR sequence? Right now, i need to convert my EXR to...
Hi, I was wondering how I can mask and remove a certain color code. The real case is, I have a clip with the green background so I want to...
How to use mask like a fadein method? ``` from moviepy.editor import * start = 8.50 def filter(get_frame, t): fading = 1.0 * t / 3 return fading * get_frame(t)...
Hi, I first came across your project from your blog here: http://zulko.github.io/blog/2013/09/27/read-and-write-video-frames-in-python-using-ffmpeg/ Fantastic and simple use of ffmpeg through pipes. Then when I read your source code for moviepy I...
Hello, I have a file that has the original dimensions of 1024 x 576 in an H.264 codec when I play it in VLC. When I read in the video...
Hi, I am trying to use moviepy to get frames as well as the frame time from a video file. My code is as follows. My video fps is 29.97...
This code should loop a clip to double the length and write that to a file. ```python from moviepy.editor import * clip = VideoFileClip("sample.mp4").fx(vfx.loop, n = 2) clip.write_videofile("output.mp4") ``` But...
Hi there, I am trying to edit each frame of a video file and then save it back. For some reason the output video is much shorter than the actual...
[Celery](http://www.celeryproject.org/) is a distributed task queue. Right now I'm using it to resize _a lot_ of images by distributing the task to all the machines in the house running a...