[youtube] Handle shared URLs with generic extractor (closes #14303)
[youtube-dl] / youtube_dl / YoutubeDL.py
index 925d095dec1c32c8b2e4d8bac7cdad452844e320..523dd1f7daf80839839d7b8a014f86897640b425 100755 (executable)
@@ -1033,7 +1033,7 @@ class YoutubeDL(object):
             '!=': operator.ne,
         }
         operator_rex = re.compile(r'''(?x)\s*
-            (?P<key>width|height|tbr|abr|vbr|asr|filesize|fps)
+            (?P<key>width|height|tbr|abr|vbr|asr|filesize|filesize_approx|fps)
             \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
             (?P<value>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?)
             $