How can I only display the final output and not the entire stdout on a notebook? I'm using moviepy and the stdout takes 80% of the screen.
Asked
Active
Viewed 169 times
0

Lincoln
- 880
- 14
- 25
1 Answers
0
In VideoClip.write_videofile, you have option to pass verbose as false, by default it is true.
def write_videofile(self, filename, fps=None, codec=None,
bitrate=None, audio=True, audio_fps=44100,
preset="medium",
audio_nbytes=4, audio_codec=None,
audio_bitrate=None, audio_bufsize=2000,
temp_audiofile=None,
rewrite_audio=True, remove_temp=True,
write_logfile=False,
verbose=True, #pass this as False
threads=None, ffmpeg_params=None,
progress_bar=True):

Sach
- 904
- 8
- 20
-
That was it. Thanks – Lincoln Oct 31 '19 at 21:22