1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-11 03:07:16 +08:00
This commit is contained in:
Avi Peretz 2020-03-11 08:42:31 +02:00
parent 7c9a677d98
commit 9549c3a016

View File

@ -468,11 +468,11 @@ class FacebookIE(InfoExtractor):
'uploader_id', fatal=False)) or self._og_search_title(webpage, default=None) 'uploader_id', fatal=False)) or self._og_search_title(webpage, default=None)
timestamp = int_or_none(self._search_regex( timestamp = int_or_none(self._search_regex(
r'\\\"timestamp\\\":([\d]+)', tahoe_data.secondary,
'timestamp', default=None)) or int_or_none(self._search_regex(
r'data-utime=\\\"(\d+)\\\"', tahoe_data.secondary, r'data-utime=\\\"(\d+)\\\"', tahoe_data.secondary,
'timestamp', default=None) or self._search_regex( 'timestamp', default=None) or self._search_regex(
r'<abbr[^>]+data-utime=["\'](\d+)', webpage, r'<abbr[^>]+data-utime=["\'](\d+)', webpage,
'timestamp', default=None)) or int_or_none(self._search_regex(
r'publish_time&quot;:([\d]+)', webpage,
'timestamp', default=None)) 'timestamp', default=None))
uploader_id = self._search_regex( uploader_id = self._search_regex(