mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[postprocessor/common] Use generalized cli option converters
This commit is contained in:
parent
1195a38f46
commit
6270239a6d
@ -4,6 +4,7 @@
|
||||
|
||||
from ..utils import (
|
||||
PostProcessingError,
|
||||
cli_configuration_args,
|
||||
encodeFilename,
|
||||
)
|
||||
|
||||
@ -61,11 +62,7 @@ def try_utime(self, path, atime, mtime, errnote='Cannot update utime of file'):
|
||||
self._downloader.report_warning(errnote)
|
||||
|
||||
def _configuration_args(self, default=[]):
|
||||
pp_args = self._downloader.params.get('postprocessor_args')
|
||||
if pp_args is None:
|
||||
return default
|
||||
assert isinstance(pp_args, list)
|
||||
return pp_args
|
||||
return cli_configuration_args(self.params, 'postprocessor_args', default)
|
||||
|
||||
|
||||
class AudioConversionError(PostProcessingError):
|
||||
|
Loading…
Reference in New Issue
Block a user