diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-02 21:33:23 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-07-02 21:58:07 +0800 | 
| commit | fd6ca382628afbc4a229a15cd26552e226ac4536 (patch) | |
| tree | 322f0af5d222d97510e8a586c6ae834f28692d0c /youtube_dl/extractor/facebook.py | |
| parent | bdafd88da07046f91e0585f083dea7795096e5d7 (diff) | |
[facebook] Improve Facebook embedded detection
Related to #9938.
Another example comes from 9834872bf63b4e03b66c5e3b8f306556e735d8c5.
Diffstat (limited to 'youtube_dl/extractor/facebook.py')
| -rw-r--r-- | youtube_dl/extractor/facebook.py | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/youtube_dl/extractor/facebook.py b/youtube_dl/extractor/facebook.py index 9b87b37ae..6eaa22d89 100644 --- a/youtube_dl/extractor/facebook.py +++ b/youtube_dl/extractor/facebook.py @@ -129,6 +129,21 @@ class FacebookIE(InfoExtractor):          'only_matching': True,      }] +    @staticmethod +    def _extract_url(webpage): +        mobj = re.search( +            r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage) +        if mobj is not None: +            return mobj.group('url') + +        # 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)[^>]+ +                data-href=(?P<q2>[\'"])(?P<url>[^\'"]+)(?P=q2)''', webpage) +        if mobj is not None: +            return mobj.group('url') +      def _login(self):          (useremail, password) = self._get_login_info()          if useremail is None:  | 
