diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-02-10 03:32:55 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-02-10 03:32:55 +0100 |
commit | 845734773d334b1a338129dad7c656c12c8fbf6f (patch) | |
tree | 14ef9aa9e28651b271025a5478e714d110ec2014 | |
parent | 347de4931cb3e496fb7b1dfb0314c213f44cce6b (diff) |
release 2015.02.10.22015.02.10.2
-rw-r--r-- | README.md | 17 | ||||
-rw-r--r-- | youtube_dl/version.py | 2 |
2 files changed, 18 insertions, 1 deletions
@@ -119,6 +119,23 @@ which means you can modify it, redistribute it or use it however you like. COUNT views --max-views COUNT Do not download any videos with more than COUNT views + --match-filter FILTER (Experimental) Generic video filter. + Specify any key (see help for -o for a list + of available keys) to match if the key is + present, !key to check if the key is not + present,key > NUMBER (like "comment_count > + 12", also works with >=, <, <=, !=, =) to + compare against a number, and & to require + multiple matches. Values which are not + known are excluded unless you put a + question mark (?) after the operator.For + example, to only match videos that have + been liked more than 100 times and disliked + less than 50 times (or the dislike + functionality is not available at the given + service), but who also have a description, + use --match-filter "like_count > 100 & + dislike_count <? 50 & description" . --no-playlist If the URL refers to a video and a playlist, download only the video. --age-limit YEARS download only videos suitable for the given diff --git a/youtube_dl/version.py b/youtube_dl/version.py index 7d144dadc..9ab5b49b8 100644 --- a/youtube_dl/version.py +++ b/youtube_dl/version.py @@ -1,3 +1,3 @@ from __future__ import unicode_literals -__version__ = '2015.02.10.1' +__version__ = '2015.02.10.2' |