[mtv] Improve thumbnal extraction

pull/13722/head
Sergey M․ 7 years ago
parent f0e31e32c9
commit 70bfab0e9a
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -50,8 +50,7 @@ class MTVServicesInfoExtractor(InfoExtractor):
thumb_node = itemdoc.find(search_path)
if thumb_node is None:
return None
else:
return thumb_node.attrib['url']
return thumb_node.get('url') or thumb_node.text or None
def _extract_mobile_video_formats(self, mtvn_id):
webpage_url = self._MOBILE_TEMPLATE % mtvn_id

Loading…
Cancel
Save