فهرست منبع

[mtv] Improve title extraction

Sergey M. 11 سال پیش
والد
کامیت
96cb10a5f5
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      youtube_dl/extractor/mtv.py

+ 4 - 2
youtube_dl/extractor/mtv.py

@@ -83,11 +83,13 @@ class MTVServicesInfoExtractor(InfoExtractor):
                 itemdoc, './/{http://search.yahoo.com/mrss/}category',
                 'scheme', 'urn:mtvn:video_title')
         if title_el is None:
-            title_el = itemdoc.find('.//title')
+            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_el = itemdoc.find('./item/title')
 
         title = title_el.text
         if title is None: