diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-26 14:36:22 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-26 14:36:22 +0100 |
commit | 9f0df77ab13ca19bc074b501296bb6a494193cd1 (patch) | |
tree | 01ce9f2d2ee7b3d2b331f6cc93b5dd9633f0c638 /youtube_dl/YoutubeDL.py | |
parent | e72c7e41238681338c92427f6731c74947645308 (diff) |
[YoutubeDL] Allow format filtering by fps
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index ae62432c6..b5dd77e3f 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -820,7 +820,7 @@ class YoutubeDL(object): '!=': operator.ne, } operator_rex = re.compile(r'''(?x)\s*\[ - (?P<key>width|height|tbr|abr|vbr|filesize) + (?P<key>width|height|tbr|abr|vbr|filesize|fps) \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s* (?P<value>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?) \]$ |