youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7a6d76a64d8a89a08bb79791506fc18b993c4580
parent 4aa353673b5404e9765a2b3e1ffbf8bb1c147d42
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 14 Oct 2015 20:49:39 +0600

[extractor/common] Require closing quote in _og_regexes (Closes #7174)

E.g. do not match `property='og:video:type'` when `og:video` is requested.

Diffstat:
Myoutube_dl/extractor/common.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py @@ -646,7 +646,8 @@ class InfoExtractor(object): @staticmethod def _og_regexes(prop): content_re = r'content=(?:"([^>]+?)"|\'([^>]+?)\'|\s*([^\s"\'=<>`]+?))' - property_re = r'(?:name|property)=[\'"]?og:%s[\'"]?' % re.escape(prop) + property_re = (r'(?:name|property)=(?:\'og:%(prop)s\'|"og:%(prop)s"|\s*og:%(prop)s\b)' + % {'prop': re.escape(prop)}) template = r'<meta[^>]+?%s[^>]+?%s' return [ template % (property_re, content_re),