mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 09:47:27 -05:00
Simplify postprocessor_args
transmission to PP base class
* Remove `extra_cmd_args` transmission from sub to super class. * Simplify params transmission through `downloader.params`.
This commit is contained in:
parent
1866432db7
commit
aa5d9a79d6
@ -227,7 +227,6 @@ def _real_main(argv=None):
|
||||
postprocessors.append({
|
||||
'key': 'FFmpegVideoConvertor',
|
||||
'preferedformat': opts.recodevideo,
|
||||
'extra_cmd_args': opts.postprocessor_args,
|
||||
})
|
||||
if opts.convertsubtitles:
|
||||
postprocessors.append({
|
||||
@ -354,6 +353,7 @@ def _real_main(argv=None):
|
||||
'extract_flat': opts.extract_flat,
|
||||
'merge_output_format': opts.merge_output_format,
|
||||
'postprocessors': postprocessors,
|
||||
'postprocessor_args': shlex.split(opts.postprocessor_args or ''),
|
||||
'fixup': opts.fixup,
|
||||
'source_address': opts.source_address,
|
||||
'call_home': opts.call_home,
|
||||
|
@ -1,7 +1,6 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import os
|
||||
import shlex
|
||||
|
||||
from ..utils import (
|
||||
PostProcessingError,
|
||||
@ -29,8 +28,8 @@ class PostProcessor(object):
|
||||
|
||||
_downloader = None
|
||||
|
||||
def __init__(self, downloader=None, extra_cmd_args=None):
|
||||
self._extra_cmd_args = shlex.split(extra_cmd_args or '')
|
||||
def __init__(self, downloader=None):
|
||||
self._extra_cmd_args = downloader.params.get('postprocessor_args')
|
||||
self._downloader = downloader
|
||||
|
||||
def set_downloader(self, downloader):
|
||||
|
@ -29,8 +29,8 @@ class FFmpegPostProcessorError(PostProcessingError):
|
||||
|
||||
|
||||
class FFmpegPostProcessor(PostProcessor):
|
||||
def __init__(self, downloader=None, extra_cmd_args=None):
|
||||
PostProcessor.__init__(self, downloader, extra_cmd_args)
|
||||
def __init__(self, downloader=None):
|
||||
PostProcessor.__init__(self, downloader)
|
||||
self._determine_executables()
|
||||
|
||||
def check_version(self):
|
||||
@ -287,8 +287,8 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
|
||||
|
||||
|
||||
class FFmpegVideoConvertorPP(FFmpegPostProcessor):
|
||||
def __init__(self, downloader=None, preferedformat=None, extra_cmd_args=None):
|
||||
super(FFmpegVideoConvertorPP, self).__init__(downloader, extra_cmd_args)
|
||||
def __init__(self, downloader=None, preferedformat=None):
|
||||
super(FFmpegVideoConvertorPP, self).__init__(downloader)
|
||||
self._preferedformat = preferedformat
|
||||
|
||||
def run(self, information):
|
||||
|
Loading…
Reference in New Issue
Block a user