mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[mdr] Simplify xpath
This commit is contained in:
parent
578c074575
commit
11465da702
@ -74,8 +74,7 @@ def _real_extract(self, url):
|
||||
doc = self._download_xml(
|
||||
compat_urlparse.urljoin(url, data_url), video_id)
|
||||
|
||||
title = (xpath_text(doc, './title', 'title', default=None) or
|
||||
xpath_text(doc, './broadcast/broadcastName', 'title'))
|
||||
title = xpath_text(doc, ['./title', './broadcast/broadcastName'], 'title', fatal=True)
|
||||
|
||||
formats = []
|
||||
processed_urls = []
|
||||
@ -149,8 +148,12 @@ def _real_extract(self, url):
|
||||
|
||||
description = xpath_text(doc, './broadcast/broadcastDescription', 'description')
|
||||
timestamp = parse_iso8601(
|
||||
xpath_text(doc, './broadcast/broadcastDate', 'timestamp', default=None) or
|
||||
xpath_text(doc, './broadcast/broadcastStartDate', 'timestamp', default=None))
|
||||
xpath_text(
|
||||
doc, [
|
||||
'./broadcast/broadcastDate',
|
||||
'./broadcast/broadcastStartDate',
|
||||
'./broadcast/broadcastEndDate'],
|
||||
'timestamp', default=None))
|
||||
duration = parse_duration(xpath_text(doc, './duration', 'duration'))
|
||||
uploader = xpath_text(doc, './rights', 'uploader')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user