I would like to know if there is a way to reduce a video to 100mb. I have some videos and I want to convert it to 100mb, regardless of the quality of the video.
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 it by 100mb? Is there any way? (PYTHON 2.7)