I'm making a script that mass downloads youtube videos from a text file, and wanted to spice up the console logging a bit with rich. However, while the system that I have does output using rich, it doesn't have progress bars for the download.
This is the current state of the code:
from __future__ import unicode_literals
from rich.logging import RichHandler
import logging
import youtube_dl
logging.basicConfig(level=logging.DEBUG, format="%(message)s", datefmt="[%X]",
handlers=[RichHandler(level=logging.DEBUG, rich_tracebacks=True, markup=True ) ]
)
log = logging.getLogger('rich')
def load(id):
address = 'http://www.youtube.com/watch?v=' + id
ydl_opts = {
'format': 'bestaudio/best',
'postprocessors': [{
'key': 'FFmpegExtractAudio',
'preferredcodec': 'wav',
'preferredquality': '192'
}],
'outtmpl': 'audio/%(id)s.wav',
"logger": log,
}
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([address])
I was wondering if there was anyway to incercept the download portion of the logging to be replaced with some sort of progress bar.
There is way of course, but it's a bit tricky. See this discussion: How to show only progress information with youtube-dl?
Following code uses rich bar while downloading audio: