mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
[facebook] Add support archived live video URLs(closes #15859)
This commit is contained in:
parent
3ae02d4a62
commit
3a6b8f4edf
|
@ -43,7 +43,7 @@ class FacebookIE(InfoExtractor):
|
||||||
video\.php|
|
video\.php|
|
||||||
video/embed|
|
video/embed|
|
||||||
story\.php|
|
story\.php|
|
||||||
watch/?
|
watch(?:/live)?/?
|
||||||
)\?(?:.*?)(?:v|video_id|story_fbid)=|
|
)\?(?:.*?)(?:v|video_id|story_fbid)=|
|
||||||
[^/]+/videos/(?:[^/]+/)?|
|
[^/]+/videos/(?:[^/]+/)?|
|
||||||
[^/]+/posts/|
|
[^/]+/posts/|
|
||||||
|
@ -276,6 +276,10 @@ class FacebookIE(InfoExtractor):
|
||||||
'upload_date': '20161122',
|
'upload_date': '20161122',
|
||||||
'timestamp': 1479793574,
|
'timestamp': 1479793574,
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# data.video.creation_story.attachments[].media
|
||||||
|
'url': 'https://www.facebook.com/watch/live/?v=1823658634322275',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
_SUPPORTED_PAGLETS_REGEX = r'(?:pagelet_group_mall|permalink_video_pagelet|hyperfeed_story_id_[0-9a-f]+)'
|
_SUPPORTED_PAGLETS_REGEX = r'(?:pagelet_group_mall|permalink_video_pagelet|hyperfeed_story_id_[0-9a-f]+)'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue