2021-06-12 22:02:19 +02:00
|
|
|
import functools
|
2022-03-25 04:01:45 +01:00
|
|
|
import itertools
|
|
|
|
import json
|
2015-04-08 17:40:31 +02:00
|
|
|
import os
|
2022-03-25 04:01:45 +01:00
|
|
|
import time
|
|
|
|
import urllib.error
|
2015-04-08 17:40:31 +02:00
|
|
|
|
|
|
|
from ..utils import (
|
2022-04-12 00:32:57 +02:00
|
|
|
PostProcessingError,
|
2021-08-23 23:45:44 +02:00
|
|
|
_configuration_args,
|
2015-04-08 17:40:31 +02:00
|
|
|
encodeFilename,
|
2022-03-25 04:01:45 +01:00
|
|
|
network_exceptions,
|
|
|
|
sanitized_Request,
|
2021-11-29 18:46:06 +01:00
|
|
|
write_string,
|
2015-04-08 17:40:31 +02:00
|
|
|
)
|
2014-01-07 05:59:22 +01:00
|
|
|
|
|
|
|
|
2021-10-08 21:11:59 +02:00
|
|
|
class PostProcessorMetaClass(type):
|
|
|
|
@staticmethod
|
|
|
|
def run_wrapper(func):
|
|
|
|
@functools.wraps(func)
|
|
|
|
def run(self, info, *args, **kwargs):
|
2021-12-20 07:06:46 +01:00
|
|
|
info_copy = self._copy_infodict(info)
|
2021-10-16 15:01:00 +02:00
|
|
|
self._hook_progress({'status': 'started'}, info_copy)
|
2021-10-08 21:11:59 +02:00
|
|
|
ret = func(self, info, *args, **kwargs)
|
|
|
|
if ret is not None:
|
|
|
|
_, info = ret
|
2021-10-16 15:01:00 +02:00
|
|
|
self._hook_progress({'status': 'finished'}, info_copy)
|
2021-10-08 21:11:59 +02:00
|
|
|
return ret
|
|
|
|
return run
|
|
|
|
|
|
|
|
def __new__(cls, name, bases, attrs):
|
|
|
|
if 'run' in attrs:
|
|
|
|
attrs['run'] = cls.run_wrapper(attrs['run'])
|
|
|
|
return type.__new__(cls, name, bases, attrs)
|
|
|
|
|
|
|
|
|
|
|
|
class PostProcessor(metaclass=PostProcessorMetaClass):
|
2014-01-07 05:59:22 +01:00
|
|
|
"""Post Processor class.
|
|
|
|
|
|
|
|
PostProcessor objects can be added to downloaders with their
|
|
|
|
add_post_processor() method. When the downloader has finished a
|
|
|
|
successful download, it will take its internal chain of PostProcessors
|
|
|
|
and start calling the run() method on each one of them, first with
|
|
|
|
an initial argument and then with the returned value of the previous
|
|
|
|
PostProcessor.
|
|
|
|
|
|
|
|
The chain will be stopped if one of them ever returns None or the end
|
|
|
|
of the chain is reached.
|
|
|
|
|
|
|
|
PostProcessor objects follow a "mutual registration" process similar
|
2015-07-11 18:41:33 +02:00
|
|
|
to InfoExtractor objects.
|
|
|
|
|
|
|
|
Optionally PostProcessor can use a list of additional command-line arguments
|
|
|
|
with self._configuration_args.
|
2014-01-07 05:59:22 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
_downloader = None
|
|
|
|
|
2015-07-02 01:12:26 +02:00
|
|
|
def __init__(self, downloader=None):
|
2021-10-08 21:11:59 +02:00
|
|
|
self._progress_hooks = []
|
|
|
|
self.add_progress_hook(self.report_progress)
|
|
|
|
self.set_downloader(downloader)
|
2021-01-20 17:07:40 +01:00
|
|
|
self.PP_NAME = self.pp_key()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def pp_key(cls):
|
|
|
|
name = cls.__name__[:-2]
|
2022-03-25 04:01:45 +01:00
|
|
|
return name[6:] if name[:6].lower() == 'ffmpeg' else name
|
2021-01-07 20:28:41 +01:00
|
|
|
|
2021-01-20 21:07:02 +01:00
|
|
|
def to_screen(self, text, prefix=True, *args, **kwargs):
|
|
|
|
tag = '[%s] ' % self.PP_NAME if prefix else ''
|
2021-01-10 14:44:54 +01:00
|
|
|
if self._downloader:
|
2022-04-11 17:10:28 +02:00
|
|
|
return self._downloader.to_screen(f'{tag}{text}', *args, **kwargs)
|
2021-01-10 14:44:54 +01:00
|
|
|
|
|
|
|
def report_warning(self, text, *args, **kwargs):
|
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.report_warning(text, *args, **kwargs)
|
|
|
|
|
2021-11-29 18:46:06 +01:00
|
|
|
def deprecation_warning(self, text):
|
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.deprecation_warning(text)
|
|
|
|
write_string(f'DeprecationWarning: {text}')
|
|
|
|
|
2021-01-10 14:44:54 +01:00
|
|
|
def report_error(self, text, *args, **kwargs):
|
2022-04-17 19:49:53 +02:00
|
|
|
self.deprecation_warning('"yt_dlp.postprocessor.PostProcessor.report_error" is deprecated. '
|
|
|
|
'raise "yt_dlp.utils.PostProcessingError" instead')
|
2021-01-10 14:44:54 +01:00
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.report_error(text, *args, **kwargs)
|
|
|
|
|
2021-05-14 09:45:29 +02:00
|
|
|
def write_debug(self, text, *args, **kwargs):
|
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.write_debug(text, *args, **kwargs)
|
2021-01-10 14:44:54 +01:00
|
|
|
|
|
|
|
def get_param(self, name, default=None, *args, **kwargs):
|
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.params.get(name, default, *args, **kwargs)
|
|
|
|
return default
|
2014-01-07 05:59:22 +01:00
|
|
|
|
|
|
|
def set_downloader(self, downloader):
|
|
|
|
"""Sets the downloader for this PP."""
|
|
|
|
self._downloader = downloader
|
2021-10-09 22:53:42 +02:00
|
|
|
for ph in getattr(downloader, '_postprocessor_hooks', []):
|
2021-10-08 21:11:59 +02:00
|
|
|
self.add_progress_hook(ph)
|
2014-01-07 05:59:22 +01:00
|
|
|
|
2021-10-16 15:01:00 +02:00
|
|
|
def _copy_infodict(self, info_dict):
|
|
|
|
return getattr(self._downloader, '_copy_infodict', dict)(info_dict)
|
|
|
|
|
2021-06-12 22:02:19 +02:00
|
|
|
@staticmethod
|
2022-02-18 18:46:16 +01:00
|
|
|
def _restrict_to(*, video=True, audio=True, images=True, simulated=True):
|
2021-06-12 22:02:19 +02:00
|
|
|
allowed = {'video': video, 'audio': audio, 'images': images}
|
|
|
|
|
|
|
|
def decorator(func):
|
|
|
|
@functools.wraps(func)
|
|
|
|
def wrapper(self, info):
|
2022-02-18 18:46:16 +01:00
|
|
|
if not simulated and (self.get_param('simulate') or self.get_param('skip_download')):
|
|
|
|
return [], info
|
2021-06-12 22:02:19 +02:00
|
|
|
format_type = (
|
2021-06-13 22:35:57 +02:00
|
|
|
'video' if info.get('vcodec') != 'none'
|
|
|
|
else 'audio' if info.get('acodec') != 'none'
|
2021-06-12 22:02:19 +02:00
|
|
|
else 'images')
|
|
|
|
if allowed[format_type]:
|
2021-06-13 11:06:13 +02:00
|
|
|
return func(self, info)
|
2021-06-12 22:02:19 +02:00
|
|
|
else:
|
|
|
|
self.to_screen('Skipping %s' % format_type)
|
|
|
|
return [], info
|
|
|
|
return wrapper
|
|
|
|
return decorator
|
|
|
|
|
2014-01-07 05:59:22 +01:00
|
|
|
def run(self, information):
|
|
|
|
"""Run the PostProcessor.
|
|
|
|
|
|
|
|
The "information" argument is a dictionary like the ones
|
|
|
|
composed by InfoExtractors. The only difference is that this
|
|
|
|
one has an extra field called "filepath" that points to the
|
|
|
|
downloaded file.
|
|
|
|
|
2015-04-18 11:36:42 +02:00
|
|
|
This method returns a tuple, the first element is a list of the files
|
|
|
|
that can be deleted, and the second of which is the updated
|
|
|
|
information.
|
2014-01-07 05:59:22 +01:00
|
|
|
|
|
|
|
In addition, this method may raise a PostProcessingError
|
|
|
|
exception if post processing fails.
|
|
|
|
"""
|
2015-04-18 11:36:42 +02:00
|
|
|
return [], information # by default, keep file and do nothing
|
2014-01-07 05:59:22 +01:00
|
|
|
|
2015-04-08 17:40:31 +02:00
|
|
|
def try_utime(self, path, atime, mtime, errnote='Cannot update utime of file'):
|
|
|
|
try:
|
|
|
|
os.utime(encodeFilename(path), (atime, mtime))
|
|
|
|
except Exception:
|
2021-01-10 14:44:54 +01:00
|
|
|
self.report_warning(errnote)
|
2015-04-08 17:40:31 +02:00
|
|
|
|
2021-08-23 23:45:44 +02:00
|
|
|
def _configuration_args(self, exe, *args, **kwargs):
|
|
|
|
return _configuration_args(
|
|
|
|
self.pp_key(), self.get_param('postprocessor_args'), exe, *args, **kwargs)
|
2015-07-11 18:41:33 +02:00
|
|
|
|
2021-10-08 21:11:59 +02:00
|
|
|
def _hook_progress(self, status, info_dict):
|
|
|
|
if not self._progress_hooks:
|
|
|
|
return
|
|
|
|
status.update({
|
2021-10-16 15:01:00 +02:00
|
|
|
'info_dict': info_dict,
|
2021-10-08 21:11:59 +02:00
|
|
|
'postprocessor': self.pp_key(),
|
|
|
|
})
|
|
|
|
for ph in self._progress_hooks:
|
|
|
|
ph(status)
|
|
|
|
|
|
|
|
def add_progress_hook(self, ph):
|
|
|
|
# See YoutubeDl.py (search for postprocessor_hooks) for a description of this interface
|
|
|
|
self._progress_hooks.append(ph)
|
|
|
|
|
|
|
|
def report_progress(self, s):
|
|
|
|
s['_default_template'] = '%(postprocessor)s %(status)s' % s
|
|
|
|
|
|
|
|
progress_dict = s.copy()
|
|
|
|
progress_dict.pop('info_dict')
|
|
|
|
progress_dict = {'info': s['info_dict'], 'progress': progress_dict}
|
|
|
|
|
|
|
|
progress_template = self.get_param('progress_template', {})
|
|
|
|
tmpl = progress_template.get('postprocess')
|
|
|
|
if tmpl:
|
|
|
|
self._downloader.to_stdout(self._downloader.evaluate_outtmpl(tmpl, progress_dict))
|
|
|
|
|
|
|
|
self._downloader.to_console_title(self._downloader.evaluate_outtmpl(
|
|
|
|
progress_template.get('postprocess-title') or 'yt-dlp %(progress._default_template)s',
|
|
|
|
progress_dict))
|
|
|
|
|
2022-03-25 04:01:45 +01:00
|
|
|
def _download_json(self, url, *, expected_http_errors=(404,)):
|
|
|
|
# While this is not an extractor, it behaves similar to one and
|
|
|
|
# so obey extractor_retries and sleep_interval_requests
|
|
|
|
max_retries = self.get_param('extractor_retries', 3)
|
|
|
|
sleep_interval = self.get_param('sleep_interval_requests') or 0
|
|
|
|
|
|
|
|
self.write_debug(f'{self.PP_NAME} query: {url}')
|
|
|
|
for retries in itertools.count():
|
|
|
|
try:
|
|
|
|
rsp = self._downloader.urlopen(sanitized_Request(url))
|
|
|
|
return json.loads(rsp.read().decode(rsp.info().get_param('charset') or 'utf-8'))
|
|
|
|
except network_exceptions as e:
|
|
|
|
if isinstance(e, urllib.error.HTTPError) and e.code in expected_http_errors:
|
|
|
|
return None
|
|
|
|
if retries < max_retries:
|
|
|
|
self.report_warning(f'{e}. Retrying...')
|
|
|
|
if sleep_interval > 0:
|
|
|
|
self.to_screen(f'Sleeping {sleep_interval} seconds ...')
|
|
|
|
time.sleep(sleep_interval)
|
|
|
|
continue
|
|
|
|
raise PostProcessingError(f'Unable to communicate with {self.PP_NAME} API: {e}')
|
|
|
|
|
2014-01-07 05:59:22 +01:00
|
|
|
|
|
|
|
class AudioConversionError(PostProcessingError):
|
|
|
|
pass
|