mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 08:40:04 +01:00
[vevo] Fix timestamp handling
( / 1000 is implicit float division )
This commit is contained in:
parent
43d7895ea0
commit
912cbf5d4e
@ -58,9 +58,9 @@ def _real_extract(self, url):
|
|||||||
'width': int(attr['frameWidth']),
|
'width': int(attr['frameWidth']),
|
||||||
})
|
})
|
||||||
|
|
||||||
date_epoch = int(self._search_regex(
|
timestamp_ms = int(self._search_regex(
|
||||||
r'/Date\((\d+)\)/', video_info['launchDate'], u'launch date'))/1000
|
r'/Date\((\d+)\)/', video_info['launchDate'], u'launch date'))
|
||||||
upload_date = datetime.datetime.fromtimestamp(date_epoch)
|
upload_date = datetime.datetime.fromtimestamp(timestamp_ms // 1000)
|
||||||
info = {
|
info = {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': video_info['title'],
|
'title': video_info['title'],
|
||||||
|
Loading…
Reference in New Issue
Block a user