moviepy
moviepy copied to clipboard
Video editing with Python
Hi ! I have a question a question about the CompositeVideoClip object : Is there a way to convert a `CompositeVideoClip` to a `byte-like-object` ?
Hi there Zulko, I think I can help with some of MoviePy's open issues. How do I join?
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...
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...
There was an error in the Chinese version of windows before.
After testing, if they fail some temporal `__test__.*` files are generated inside the current working directory.
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...
``` 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...
``` 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...
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 ``` ->...