Ask Your Question

Revision history [back]

Moviepy displays a progress bar because it uses the tqdm library to display progress by default, even if verbose is set to False. To disable the progress bar, you can set the progress_bar argument to False when calling the video editing function. For example:

from moviepy.editor import VideoFileClip

clip = VideoFileClip("my_video.mp4")
new_clip = clip.subclip(0, 10).resize(0.5)
new_clip.write_videofile("my_video_edited.mp4", verbose=False, progress_bar=False)