2014-11-26 19:01:20 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2015-04-08 15:40:31 +00:00
|
|
|
import os
|
|
|
|
|
2021-01-20 16:07:40 +00:00
|
|
|
from ..compat import compat_str
|
2015-04-08 15:40:31 +00:00
|
|
|
from ..utils import (
|
2021-01-23 09:43:51 +00:00
|
|
|
cli_configuration_args,
|
2015-04-08 15:40:31 +00:00
|
|
|
encodeFilename,
|
2021-01-23 09:43:51 +00:00
|
|
|
PostProcessingError,
|
2015-04-08 15:40:31 +00:00
|
|
|
)
|
2014-01-07 04:59:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PostProcessor(object):
|
|
|
|
"""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 16:41:33 +00:00
|
|
|
to InfoExtractor objects.
|
|
|
|
|
|
|
|
Optionally PostProcessor can use a list of additional command-line arguments
|
|
|
|
with self._configuration_args.
|
2014-01-07 04:59:22 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
_downloader = None
|
|
|
|
|
2015-07-01 23:12:26 +00:00
|
|
|
def __init__(self, downloader=None):
|
2014-01-07 04:59:22 +00:00
|
|
|
self._downloader = downloader
|
2021-01-20 16:07:40 +00:00
|
|
|
self.PP_NAME = self.pp_key()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def pp_key(cls):
|
|
|
|
name = cls.__name__[:-2]
|
|
|
|
return compat_str(name[6:]) if name[:6].lower() == 'ffmpeg' else name
|
2021-01-07 19:28:41 +00:00
|
|
|
|
2021-01-20 20:07:02 +00:00
|
|
|
def to_screen(self, text, prefix=True, *args, **kwargs):
|
|
|
|
tag = '[%s] ' % self.PP_NAME if prefix else ''
|
2021-01-10 13:44:54 +00:00
|
|
|
if self._downloader:
|
2021-01-20 20:07:02 +00:00
|
|
|
return self._downloader.to_screen('%s%s' % (tag, text), *args, **kwargs)
|
2021-01-10 13:44:54 +00:00
|
|
|
|
|
|
|
def report_warning(self, text, *args, **kwargs):
|
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.report_warning(text, *args, **kwargs)
|
|
|
|
|
|
|
|
def report_error(self, text, *args, **kwargs):
|
|
|
|
if self._downloader:
|
|
|
|
return self._downloader.report_error(text, *args, **kwargs)
|
|
|
|
|
2021-01-20 20:07:02 +00:00
|
|
|
def write_debug(self, text, prefix=True, *args, **kwargs):
|
|
|
|
tag = '[debug] ' if prefix else ''
|
2021-01-26 10:22:04 +00:00
|
|
|
if self.get_param('verbose', False) and self._downloader:
|
2021-01-20 20:07:02 +00:00
|
|
|
return self._downloader.to_screen('%s%s' % (tag, text), *args, **kwargs)
|
2021-01-10 13:44:54 +00: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 04:59:22 +00:00
|
|
|
|
|
|
|
def set_downloader(self, downloader):
|
|
|
|
"""Sets the downloader for this PP."""
|
|
|
|
self._downloader = downloader
|
|
|
|
|
|
|
|
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 09:36:42 +00: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 04:59:22 +00:00
|
|
|
|
|
|
|
In addition, this method may raise a PostProcessingError
|
|
|
|
exception if post processing fails.
|
|
|
|
"""
|
2015-04-18 09:36:42 +00:00
|
|
|
return [], information # by default, keep file and do nothing
|
2014-01-07 04:59:22 +00:00
|
|
|
|
2015-04-08 15:40:31 +00: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 13:44:54 +00:00
|
|
|
self.report_warning(errnote)
|
2015-04-08 15:40:31 +00:00
|
|
|
|
2021-03-09 02:17:21 +00:00
|
|
|
def _configuration_args(self, exe, keys=None, default=[], use_compat=True):
|
|
|
|
pp_key = self.pp_key().lower()
|
|
|
|
exe = exe.lower()
|
|
|
|
root_key = exe if pp_key == exe else '%s+%s' % (pp_key, exe)
|
|
|
|
keys = ['%s%s' % (root_key, k) for k in (keys or [''])]
|
|
|
|
if root_key in keys:
|
|
|
|
keys += [root_key] + ([] if pp_key == exe else [(self.pp_key(), exe)]) + ['default']
|
|
|
|
else:
|
|
|
|
use_compat = False
|
2021-02-24 16:05:18 +00:00
|
|
|
return cli_configuration_args(
|
|
|
|
self._downloader.params.get('postprocessor_args'),
|
2021-03-09 02:17:21 +00:00
|
|
|
keys, default, use_compat)
|
2015-07-11 16:41:33 +00:00
|
|
|
|
2014-01-07 04:59:22 +00:00
|
|
|
|
|
|
|
class AudioConversionError(PostProcessingError):
|
|
|
|
pass
|