Browse Source
[facebook] Make embed detection stricter to prevent false-positives
master
Yen Chi Hsuan
8 years ago
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
1 changed files with
1 additions and
1 deletions
-
youtube_dl/extractor/facebook.py
|
@ -140,7 +140,7 @@ class FacebookIE(InfoExtractor): |
|
|
# see https://developers.facebook.com/docs/plugins/embedded-video-player |
|
|
# see https://developers.facebook.com/docs/plugins/embedded-video-player |
|
|
mobj = re.search(r'''(?x)<div[^>]+ |
|
|
mobj = re.search(r'''(?x)<div[^>]+ |
|
|
class=(?P<q1>[\'"])[^\'"]*\bfb-video\b[^\'"]*(?P=q1)[^>]+ |
|
|
class=(?P<q1>[\'"])[^\'"]*\bfb-video\b[^\'"]*(?P=q1)[^>]+ |
|
|
data-href=(?P<q2>[\'"])(?P<url>[^\'"]+)(?P=q2)''', webpage) |
|
|
|
|
|
|
|
|
data-href=(?P<q2>[\'"])(?P<url>(?:https?:)?//(?:www\.)?facebook.com/.+?)(?P=q2)''', webpage) |
|
|
if mobj is not None: |
|
|
if mobj is not None: |
|
|
return mobj.group('url') |
|
|
return mobj.group('url') |
|
|
|
|
|
|
|
|