diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-03-02 15:06:09 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-03-02 18:21:31 +0100 |
commit | c75f0b361a1b00f6ac1298615d6fee101994b2b9 (patch) | |
tree | bbf8bc7765faf831b44cc5f36c5c22dfd977c316 /youtube_dl/downloader/common.py | |
parent | 295df4edb97e3c0dc0ecd95746bb2c455607a4a3 (diff) |
[downloader/external] Add support for custom options (Fixes #4885, closes #5098)
Diffstat (limited to 'youtube_dl/downloader/common.py')
-rw-r--r-- | youtube_dl/downloader/common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/youtube_dl/downloader/common.py b/youtube_dl/downloader/common.py index 3ae90021a..8ed5c19a6 100644 --- a/youtube_dl/downloader/common.py +++ b/youtube_dl/downloader/common.py @@ -42,6 +42,8 @@ class FileDownloader(object): max_filesize: Skip files larger than this size xattr_set_filesize: Set ytdl.filesize user xattribute with expected size. (experimenatal) + external_downloader_args: A list of additional command-line arguments for the + external downloader. Subclasses of this one must re-define the real_download method. """ |