diff options
| author | Sergey M. <dstftw@gmail.com> | 2014-02-12 01:07:30 +0700 | 
|---|---|---|
| committer | Sergey M. <dstftw@gmail.com> | 2014-02-12 01:07:30 +0700 | 
| commit | 96cb10a5f56a5ba207f26887a52c9dc6257c2864 (patch) | |
| tree | f32473378c5e29cd44e4f94421ec21675851fa43 | |
| parent | c207c1044e453fc451ec508463a43ee242fbdcfc (diff) | |
[mtv] Improve title extraction
| -rw-r--r-- | youtube_dl/extractor/mtv.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index 6f5180892..4f9308436 100644 --- a/youtube_dl/extractor/mtv.py +++ b/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: | 
