diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-02-09 01:09:45 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-02-09 01:09:45 +0600 |
commit | 2ec19e955870e82bd91949b0996dfd9acdde0232 (patch) | |
tree | 94ff7a6e45494a131a5de89395a2900b339b0db2 /youtube_dl | |
parent | 9ddb6925bfc53e0f31f7d114490259e293e91edd (diff) |
[YoutubeDL] Allow filtering by audio sampling rate
Diffstat (limited to 'youtube_dl')
-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 0934911ec..c7108dbc1 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -826,7 +826,7 @@ class YoutubeDL(object): '!=': operator.ne, } operator_rex = re.compile(r'''(?x)\s*\[ - (?P<key>width|height|tbr|abr|vbr|filesize|fps) + (?P<key>width|height|tbr|abr|vbr|asr|filesize|fps) \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s* (?P<value>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?) \]$ |