停止 ytdl 向控制台发送消息

Stop ytdl from sending messages to console

当我从 ytdl 加载视频时,它会在控制台中打印:[youtube] videoLink: Downloading webpage。我怎样才能让它停止打印这些?

好的,我想我知道怎么做了。我只需要这样定义我的 ydl_opts:

ydl_opts = {
    'quiet': True
}