1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-27 19:55:26 +02:00

[mtv/gametrailers] Change order of title preference

It looks like the plain title is better again
This commit is contained in:
Philipp Hagemeister 2014-02-06 04:15:11 +01:00
parent 3c995527e9
commit 1df4229bd7

View File

@ -82,10 +82,13 @@ def _get_video_info(self, itemdoc):
title_el = find_xpath_attr(
itemdoc, './/{http://search.yahoo.com/mrss/}category',
'scheme', 'urn:mtvn:video_title')
if title_el is None:
title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
if title_el is None:
title_el = itemdoc.find('.//title')
if title_el.text is None:
title_el = None
if title_el is None:
title_el = itemdoc.find('.//{http://search.yahoo.com/mrss/}title')
title = title_el.text
if title is None:
raise ExtractorError('Could not find video title')