summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-02-09 01:09:45 +0600
committerSergey M․ <dstftw@gmail.com>2015-02-09 01:09:45 +0600
commit2ec19e955870e82bd91949b0996dfd9acdde0232 (patch)
tree94ff7a6e45494a131a5de89395a2900b339b0db2
parent9ddb6925bfc53e0f31f7d114490259e293e91edd (diff)
downloadyoutube-dl-2ec19e955870e82bd91949b0996dfd9acdde0232.tar.gz
youtube-dl-2ec19e955870e82bd91949b0996dfd9acdde0232.tar.xz
youtube-dl-2ec19e955870e82bd91949b0996dfd9acdde0232.zip
[YoutubeDL] Allow filtering by audio sampling rate
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
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]?)?)
             \]$