From 3e2601dfe80ba6cc02eb4f47a17b07e3e9aa05a1 Mon Sep 17 00:00:00 2001 From: SANGERA2 Date: Thu, 23 Feb 2017 22:40:05 +0000 Subject: [PATCH] Addition to help for max-filesize in Options.py Added to the text outputted to the command-line in the help parameter for --min-filesize to match the addition I made in the README.md file with additional advice regarding the use of the min-filesize to try to filter for longer/larger videos. --- youtube_dl/options.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 5a11dddf9..c99099676 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -280,7 +280,12 @@ def parseOpts(overrideArguments=None): selection.add_option( '--min-filesize', metavar='SIZE', dest='min_filesize', default=None, - help='Do not download any videos smaller than SIZE (e.g. 50k or 44.6m)') + help=( + 'Do not download any videos smaller than SIZE (e.g. 50k or 44.6m). + 'Use match-filter with the duration key instead of this to filter' + 'for long videos only as this will often download the video track' + 'and skip the audio if they are downloaded separately.' + )) selection.add_option( '--max-filesize', metavar='SIZE', dest='max_filesize', default=None,