Trying to hide the Logger Bar in the console #2145
-
Recently i made a YouTube Downloader, and add GUI to it.
def initUI(self):
self.setWindowIcon(QtGui.QIcon(self.ui.iconspath+'app-64.png'))
sys.stdout = self My question is:
Project Link: https://github.com/Ernesto-Alves67/YoutubeDownloader_/tree/main/Gui_version |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
try this: clip = VideoFileClip("video.mp4") # Generate a clip
clip.write_videofile("output.mp4") # Prints progress bar and info
clip.write_videofile("output.mp4", verbose=False) # Just prints progress bar
clip.write_videofile("output.mp4", verbose=False, progress_bar=False) # Prints nothing or try this instead |
Beta Was this translation helpful? Give feedback.
try this:
or try this instead
logger=None