diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-03 14:11:29 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-03 14:11:29 +0800 |
commit | 369bb0620620d6499dc1d8db0f9b2624a76d941d (patch) | |
tree | 1e40335cf35065be54005e4b33b42c1269b1365d /youtube_dl | |
parent | 2cb31d288e945a98a1e23023e17c01c4dc5c1cb0 (diff) |
[facebook] Improve embed detection (#5701)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/facebook.py | 2 |
1 files changed, 1 insertions, 1 deletions
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)<div[^>]+ - class=(?P<q1>[\'"])[^\'"]*\bfb-video\b[^\'"]*(?P=q1)[^>]+ + class=(?P<q1>[\'"])[^\'"]*\bfb-(?:video|post)\b[^\'"]*(?P=q1)[^>]+ data-href=(?P<q2>[\'"])(?P<url>(?:https?:)?//(?:www\.)?facebook.com/.+?)(?P=q2)''', webpage) if mobj is not None: return mobj.group('url') |