moviepy
moviepy copied to clipboard
Video editing with Python
Fixes #2115 seeking by frame is inexact and inconsistent - [x] I have provided code that clearly demonstrates the bug and that only works correctly when applying this fix -...
Below is simplified code for a script I'm programming to overlay PNG files with subtitles over a video: ``` import moviepy.editor as moviepy from moviepy import * input_vid = moviepy.VideoFileClip("input.mp4").set_duration(10)...
IDK if this counts as a bug exactly, but that was the closest category. I just spend a lot of time trying to debug an error I got when running...
#### Expected Behavior See below - the handle to a video file should not start returning zeros. The video file we're using with this is here: https://caiman.flatironinstitute.org/~neuro/caiman_downloadables/msCam13.avi We found this...
This is a follow up on https://github.com/Zulko/moviepy/discussions/2046#discussion-5701521. It's an example of how I envisioned templates, sections, and automation using moviepy. I'm not certain as to whether the actual implementation belongs...
I wanted to change the opacity of a clip, so I called again 'with_opacity' to change the value. ``` clip = clip.with_opacity(0.5) clip = clip.with_opacity(0.75) ``` #### Expected Behavior Setting...
Hello To cut to the chase, I have a subclip from a video which I crop in my code: ```py clip_start = random.choice(TEMP)[0] video_file = VideoFileClip(video) subclip = video_file.subclip(clip_start, clip_start...
#### Expected Behavior When running moviepy from my script through the console the movie file writes correctly and without error. Here is the snippet below that writes my clip, then...
Hi Team, I'm trying to create a video from an ImageClip and few VideoFileClip. Video generated is blurred after the ImageClip part. In the absence of ImageClip, created file is...
While writing the text clip for Hindi language the writing is getting changed. ``` Caption: "ऐसी दुनिया में आपका स्वागत है जहां दृष्टि उद्देश्य से मिलती है।" text_clip = TextClip(caption,...