1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-29 04:29:50 +08:00

fix timestamp.

This commit is contained in:
Avi Peretz
2020-03-11 00:18:08 +02:00
Unverified
parent 5dadd9c357
commit 7c9a677d98
+2
View File
@@ -468,6 +468,8 @@ class FacebookIE(InfoExtractor):
'uploader_id', fatal=False)) or self._og_search_title(webpage, default=None)
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,
'timestamp', default=None) or self._search_regex(
r'<abbr[^>]+data-utime=["\'](\d+)', webpage,