Browse Source

[options] Mention quoted string literals for --match-filter

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
ac33accd96
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      youtube_dl/options.py

+ 4
- 2
youtube_dl/options.py View File

@ -302,8 +302,10 @@ def parseOpts(overrideArguments=None):
'match if the key is present, ' 'match if the key is present, '
'!key to check if the key is not present, ' '!key to check if the key is not present, '
'key > NUMBER (like "comment_count > 12", also works with ' 'key > NUMBER (like "comment_count > 12", also works with '
'>=, <, <=, !=, =) to compare against a number, and '
'& to require multiple matches. '
'>=, <, <=, !=, =) to compare against a number, '
'key = \'LITERAL\' (like "uploader = \'Mike Smith\'", also works with !=) '
'to match against a string literal '
'and & to require multiple matches. '
'Values which are not known are excluded unless you ' 'Values which are not known are excluded unless you '
'put a question mark (?) after the operator. ' 'put a question mark (?) after the operator. '
'For example, to only match videos that have been liked more than ' 'For example, to only match videos that have been liked more than '


Loading…
Cancel
Save