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

``` import moviepy.editor as mp #Input audio file audio = mp.AudioFileClip('a.mp3') #Input video file video = mp.VideoFileClip('a.mp4') #adding external audio to video final_video = video.set_audio(audio) #Extracting final output video final_video.write_videofile("a...

bug
audio

Hi, i find a strange behaviour with clips_array function. I am trying to stack two videos that were saved with different fps. I am therefore first setting fps and duration...

question
video

#### Expected Behavior I combine mp4 and mp3 and get that error #### Actual Behavior File "C:\X\venv\Lib\site-packages\moviepy\video\VideoClip.py", line 300, in write_videofile ffmpeg_write_video(self, filename, fps, codec, File "C:\X\venv\Lib\site-packages\moviepy\video\io\ffmpeg_writer.py", line 212, in...

bug
needs-more-info
lib-FFmpeg

``` git clone https://git.videolan.org/git/ffmpeg/nv-codec-headers.git cd nv-codec-headers make sudo make install git clone https://github.com/FFmpeg/FFmpeg.git ./configure --prefix=/usr/local/ffmpeg --enable-shared --disable-static --disable-doc --enable-gpl --enable-libx264 --enable-cuda --enable-cuvid make sudo make install ffmpeg -decoders | grep...

When I read a video by calling `font_video = VideoFileClip(cover_path)`, it gets stuck without any explicit error. I check the video and find its audio is incomplete. I'm not sure...

bug
video
audio

``` text_clip = text_clip.set_opacity(lambda t : t/duration) ``` Is there any way to achieve this/make this work to change opacity from 0 to 1? Seems like Lambda is not allowed...

question

Hi All, I am trying to create a custom class for VideoClip to generate some animation and txt effects. I notice that once I create a subclip on my custom...

bug

I am currently working on a bot and need to concatenate long list of videos, sometimes upto 50 videos This works perfectly fine for a short list of videos (~10)...

bug

Making suite to @keikoro suggestion in issue #1874, I open this issue to be the place we can discuss the changes (general as well as specific implementations) we want to...

project-admin
design-decisions

Hello, Thanks for the great work on this package. Could you please provide a PDF file of the full documentation of MoviePy ? (other formats like .txt work as well)...

feature-request