From: Yen Chi Hsuan Date: Sun, 3 Jul 2016 06:11:29 +0000 (+0800) Subject: [facebook] Improve embed detection (#5701) X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=369bb0620620d6499dc1d8db0f9b2624a76d941d;p=youtube-dl.git [facebook] Improve embed detection (#5701) --- diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index bbdb14366..f5d4f966a 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -139,7 +139,7 @@ class FacebookIE(InfoExtractor): # Facebook API embed # see https://developers.facebook.com/docs/plugins/embedded-video-player mobj = re.search(r'''(?x)]+ - class=(?P[\'"])[^\'"]*\bfb-video\b[^\'"]*(?P=q1)[^>]+ + class=(?P[\'"])[^\'"]*\bfb-(?:video|post)\b[^\'"]*(?P=q1)[^>]+ data-href=(?P[\'"])(?P(?:https?:)?//(?:www\.)?facebook.com/.+?)(?P=q2)''', webpage) if mobj is not None: return mobj.group('url')