about summary refs log tree commit diff
path: root/youtube_dl/extractor/facebook.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-07-03 14:11:29 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-07-03 14:11:29 +0800
commit369bb0620620d6499dc1d8db0f9b2624a76d941d (patch)
tree1e40335cf35065be54005e4b33b42c1269b1365d /youtube_dl/extractor/facebook.py
parent2cb31d288e945a98a1e23023e17c01c4dc5c1cb0 (diff)
downloadyoutube-dl-369bb0620620d6499dc1d8db0f9b2624a76d941d.tar.gz
youtube-dl-369bb0620620d6499dc1d8db0f9b2624a76d941d.tar.xz
youtube-dl-369bb0620620d6499dc1d8db0f9b2624a76d941d.zip
[facebook] Improve embed detection (#5701)
Diffstat (limited to 'youtube_dl/extractor/facebook.py')
-rw-r--r--youtube_dl/extractor/facebook.py2
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')