1
0

Turn off verbose output for youtube-dl.

This commit is contained in:
Pierre Cazenave 2018-09-28 22:50:50 +01:00
parent 768a3a6326
commit 2ec429f438

2
dl.py
View File

@ -77,7 +77,7 @@ if __name__ == '__main__':
else:
print(f'{len(videos)} new videos found')
ydl_opts = {'ignoreerrors': True}
ydl_opts = {'ignoreerrors': True, 'quiet': True}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download(videos)