1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-16 10:09:32 +00:00

[generic] Extract RSS video timestamp

This commit is contained in:
Sergey M․ 2020-12-06 22:30:30 +07:00
parent cc017e07ca
commit 5e822c2526
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -30,6 +30,7 @@ from ..utils import (
smuggle_url,
unescapeHTML,
unified_strdate,
unified_timestamp,
unsmuggle_url,
UnsupportedError,
xpath_text,
@ -2208,6 +2209,8 @@ class GenericIE(InfoExtractor):
'url': next_url,
'title': it.find('title').text,
'description': xpath_text(it, 'description', default=None),
'timestamp': unified_timestamp(
xpath_text(it, 'pubDate', default=None)),
})
return {