1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Create a wrapper around the videos downloaded from youtube_dl

This commit is contained in:
Steffo 2019-04-14 15:17:57 +02:00
parent 321b037a99
commit 4e41b0efb5

View file

@ -1,6 +1,7 @@
import typing
import logging as _logging
from youtube_dl import YoutubeDL
from contextlib import contextmanager
log = _logging.getLogger(__name__)
@ -9,6 +10,35 @@ class DownloaderError(Exception):
pass
class YtdlFile:
"""A wrapper around a youtube_dl downloaded file. Should be created by the YtdlInfo class!"""
def __init__(self, info: "YtdlInfo", outtmpl, extra_progress_hooks=None, **ytdl_args):
self.info: "YtdlInfo" = info
self.filename: str
# Download the file
ytdl = YoutubeDL({
"logger": log, # Log messages to a logging.Logger instance.
"quiet": True, # Do not print messages to stdout.
"noplaylist": True, # Download single video instead of a playlist if in doubt.
"no_warnings": True, # Do not print out anything for warnings.
"outtmpl": outtmpl,
"progress_hooks": [self._progress_hook, *extra_progress_hooks],
**ytdl_args
})
ytdl.download(self.info.webpage_url)
def _progress_hook(self, data: dict):
# Check the status
status = data.get("status")
# Ignore unknown values
if status not in ["downloading", "error", "finished"]:
return
# If the download is finished, set the filename
if status == "finished":
# Filename is always present
self.filename = data["filename"]
class YtdlInfo:
"""A wrapper around youtube_dl extracted info."""
@ -71,16 +101,20 @@ class YtdlInfo:
self.ext: typing.Optional[str] = info.get("ext")
@staticmethod
def create_from_url(url) -> typing.List["YtdlInfo"]:
def create_from_url(url, **ytdl_args) -> typing.List["YtdlInfo"]:
# So many redundant options!
ytdl = YoutubeDL({
"logger": log, # Log messages to a logging.Logger instance.
"quiet": True, # Do not print messages to stdout.
"noplaylist": True, # Download single video instead of a playlist if in doubt.
"no_warnings": True # Do not print out anything for warnings."
"no_warnings": True, # Do not print out anything for warnings.
**ytdl_args
})
first_info = ytdl.extract_info(url=url, download=False)
# If it is a playlist, create multiple videos!
if "entries" in first_info:
return [YtdlInfo(second_info) for second_info in first_info["entries"]]
return [YtdlInfo(first_info)]
def download(self, outtmpl, downloader_class, **ytdl_args) -> YtdlFile:
return YtdlFile(self, outtmpl)