moviepy
moviepy copied to clipboard
Video editing with Python
I try to use MoviePy for my python flask web server. I got the video file passed in from request: ``` class MediaLibraryAPI(Resource): def post(self): print(request.files.values()[0]) #
In the v: improve-docs version of the documentation, the write_videofile method has a mispelled argument. It is not ```pixel_format``` but ```pix_fmt```. https://moviepy-tburrows13.readthedocs.io/en/improve-docs/ref/VideoClip/VideoClip.html#moviepy.video.VideoClip.VideoClip.write_videofile #### Specifications - Python Version: 3.9 - Moviepy...
Example clip ```from moviepy.video import * from moviepy.editor import * video = VideoFileClip(f"comptemp/706169716.mp4") video.write_videofile(f'render/Export.mp4',fps=24) ``` #### Expected Behavior The files should be identical #### Actual Behavior There is a frame...
a simple code like this is creating a curropted audio file for some reasons: ``` from moviepy import * clip = VideoFileClip("cut.mp4") audio = clip.audio audio.to_audiofile('temp-audio.mp3') ``` --> #### Expected...
Hey there, Love the project, thanks all contributors. The stroke property on TextClip seem to apply inside the characters, is there any way to change this to be on the...
Hi, Thank you for your excellent toolbox. I am using moviepy to serially read every frame of videos captured at 250 fps, with >200,000 frames per video. Using clip.iter_frames for...
I converted a lossless audio file (.flac) to a soundarray and back to an audio clip. After saving the clip the files differ. This were my commands: ``` from moviepy.editor...
Can't find the letter "i", depending on the previous letter, when iterating over a TextClip object
I am using the findObjects function to iterate over the found letters (generated with TextClip) and replace some of their colors. The problem is that I noticed that depending on...
I've tried using generating text clips with Arabic text and it results in the letters come out separated and mirrored. Support for RTL languages would be highly appreciated.
### Bad clip duration after adding overlay text to the video file. Hello, I have a problem. After adding text to video files, the length of the shots is change....