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

Hi ! I have a question a question about the CompositeVideoClip object : Is there a way to convert a `CompositeVideoClip` to a `byte-like-object` ?

question
video

Hi there Zulko, I think I can help with some of MoviePy's open issues. How do I join?

question

Hello, I am new user so this can be unaccurate, but I think it's a bug. When I was writing one video it seems ok. If I try to concatenate...

bug
audio

We are recording videos from the browser with the following encoding 'video/webm; codecs="vp8, opus"', then we upload these videos to an AWS S3 bucket. Our ML model works on these...

bug
video

There was an error in the Chinese version of windows before.

bug-fix
awaiting-response

After testing, if they fail some temporal `__test__.*` files are generated inside the current working directory.

tests

This is a minimal case of a program that demonstrates the bug ``` from PyQt5.QtWidgets import * from PyQt5.QtCore import * from moviepy.editor import VideoFileClip, AudioFileClip, CompositeAudioClip import sys class...

bug
lib-3rd-party

``` from moviepy import * textPosition = (random.uniform(-0.15, 0.15), random.uniform(-0.15, 0.15)) textClip = TextClip(txt="Test", size=(1920, 1080), color="white", stroke_color="black", stroke_width=5, fontsize=200) textClip = textClip.set_position('center') textClip = textClip.set_position(textPosition, relative=True) textClip = textClip.resize(lambda...

bug
text

``` import os from moviepy.editor import * dir = os.getcwd() + '/static' file = dir + '/videofile.mp4' clip = VideoFileClip(file).subclip(5,10) clip.write_videofile(f"{os.getcwd()}/static/newfile.mp4") clip.close() ``` When I run this code outside of...

bug
video
lib-FFmpeg

Script used: https://github.com/zackmawaldi/YouTube-shorts-generator Error: ``` File "/home/pi/.local/lib/python3.9/site-packages/moviepy/video/io/ffmpeg_reader.py", line 340, in ffmpeg_parse_infos line = [l for l in lines if "Duration:" in l][-1] IndexError: list index out of range ``` ->...

bug