mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-11 03:07:16 +08:00
fix date
This commit is contained in:
parent
7c9a677d98
commit
9549c3a016
@ -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":([\d]+)', webpage,
|
||||||
'timestamp', default=None))
|
'timestamp', default=None))
|
||||||
|
|
||||||
uploader_id = self._search_regex(
|
uploader_id = self._search_regex(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user