mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-05-13 16:35:43 -05:00
[extractor/generic] Support RSS uploader
This commit is contained in:
parent
02b2f9fa7d
commit
2a81c0d577
1 changed files with 1 additions and 0 deletions
|
@ -2214,6 +2214,7 @@ def itunes(key):
|
|||
'url': next_url,
|
||||
'title': try_call(lambda: it.find('title').text),
|
||||
'description': xpath_text(it, 'description', default=None),
|
||||
'uploader': xpath_text(it, 'author', default=None),
|
||||
'timestamp': unified_timestamp(xpath_text(it, 'pubDate', default=None)),
|
||||
'duration': parse_duration(itunes('duration')),
|
||||
'thumbnail': url_or_none(xpath_attr(it, xpath_with_ns('./itunes:image', NS_MAP), 'href')),
|
||||
|
|
Loading…
Reference in a new issue