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

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]) #

feature-request

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...

documentation

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...

bug
video
audio

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...

bug
audio

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...

question
text
awaiting-response

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...

feature-request
video

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...

bug
audio

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...

bug
text

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.

feature-request
text

### 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....

bug
text
awaiting-response