Questions tagged [moviepy]

MoviePy is a Python module for video editing, which can be used for basic operations (like cuts, concatenations, title insertions), video compositing (a.k.a. non-linear editing), video processing, or to create advanced effects.

References

763 questions
-1
votes
1 answer

How to avoid too many open files issue in movipy?

I am trying to create an mp4 by concatenating some videoclips using moviepy. However, depending on number of clips, I get the error: too many open files. In the code below two lists are being used where jpegs contains all embedded pictures and their…
mlee_jordan
  • 772
  • 4
  • 18
  • 50
-1
votes
1 answer

Apply two or more commands at the same time in python

I created a simple program to convert video to audio, using the moviepy library and the program as follows: import moviepy.editor as mp from tkinter import * from tkinter import ttk from tkinter.filedialog import asksaveasfile, askopenfile from…
-1
votes
1 answer

segmentation fault when importing python package(moviepy)

When I write the following statement in my python code, I receive a segmentation fault. >>> import moviepy.editor Segmentation fault (core dumped) What's wrong with this? os: ubuntu 16.04 python: 3.6 moviepy: 0.2.3.2 ffmpeg: 3.3.4 Update I now…
gaudi08
  • 21
  • 1
  • 6
-1
votes
2 answers

I am trying to display the video in python using moviepy library but the video doesn't play

code and output From Command prompt I've tried many times to display the video using moviepy but it doesn't work I also tried to display it using command prompt but still the same problem.. So what should I do or what I am missing ?? help me please…
-1
votes
1 answer

Python Movie.py error on writing more than 4 videos

I've been trying to figure out this problem the entire day. I'm trying to add a image at the bottom of every video in a directory. Here is the error that i get after writing just 4 videos out of 100 del self.reader AttributeError: reader …
taijamen
  • 61
  • 1
  • 1
  • 7
-2
votes
1 answer

MoviePy: concatenate list of videoclips won't work

I try to merge a hand full of videos. Therefore i use Moviepy. Unlikely, moviepy gives me an error over about 20 lines and i don't know what exactly i did wrong. My code is: import os from glob import glob from moviepy.editor import VideoFileClip,…
JanHarm22
  • 1
  • 2
-2
votes
2 answers

Trying to concatanate a list of images to make a video but i get a error

[This is a screenshot ofHeres a screenshot of the error code block]2Heres the code: import os from moviepy.editor import * Memes = [] numLabel = 0 for pictures in os.listdir("memes"): ImageClip("memes/" + pictures).set_duration(5) …
Matthew
  • 1
  • 1
-2
votes
1 answer

import moviepy error issue with python3.9+ and matplotlib on latest MacOS M1

For python 3.9+ there seems to be an error when I import moviepy after a pip install for moviepy with the correct command as per docs. I am trying an alternative to save animated plots from matplotlib from .gif format to .mp4 format, but matplotlib…
Arya Keni
  • 1
  • 2
-2
votes
1 answer

how to solve ValueError in moviepy?

I am making a video with subtitle using moviepy in python 3.6. from moviepy.video.tools.subtitles import SubtitlesClip from moviepy.video.io.VideoFileClip import VideoFileClip generator = (lambda txt: TextClip(txt, font='Georgia-Regular',…
Prashasth Nair
  • 167
  • 2
  • 12
-2
votes
1 answer

replace downloaded youtube video content with a bold centered text

I have zero experience with python, but it is clear enough (for most of the code). There is this code: from moviepy.editor import * video = VideoFileClip("myHolidays.mp4").subclip(50,60) # Make the text. Many more options are available. txt_clip =…
-3
votes
0 answers

Python, Motion Effect

I want this effect. [1]: https://i.stack.imgur.com/OivzQ.jpg As you can see, when the object is moving the background around it is distorting and warping. I cannot sure how I can explain exactly. So I've tried by trying motion blur effect along the…
HappySid
  • 29
  • 7
-4
votes
1 answer

Problems with Python

I have so many weird problems with python. I installed moviepy and when I want to run the code using Spyder, it says this no module named moviepy. But, when I run the code on the terminal, everything is fine. My other problem is that I installed…
1 2 3
50
51