0
I’d like to know if there’s any way to narrow a video down to 100mb. I have some videos and I want to convert it to 100mb, regardless of the quality it will stay.
In this example, I reduce to 360p in quality
import moviepy.editor as mp
clip = mp.VideoFileClip("movie.mp4")
clip_resized = clip.resize(height=360) # make the height 360px ( According to moviePy documenation The width is then computed so that the width/height ratio is conserved.)
clip_resized.write_videofile("movie_resized.mp4")
How would you reduce by 100mb? Is there any way? (PYTHON 2.7)