X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fmtv.py;h=6f5180892756aec148c0e0b6172e007fe291f623;hb=d67cc9fa7c1c38fa72ed8990965ef0aeebbdb43a;hp=51f91ef1d139e9a12352c04f9653cd59e1e90784;hpb=af1588c05f308ffa2fdabaa2fc4c38673b4217d8;p=youtube-dl diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py index 51f91ef1d..6f5180892 100644 --- a/youtube_dl/extractor/mtv.py +++ b/youtube_dl/extractor/mtv.py @@ -82,13 +82,17 @@ class MTVServicesInfoExtractor(InfoExtractor): 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') + title = title.strip() return { 'title': title, @@ -111,11 +115,16 @@ class MTVServicesInfoExtractor(InfoExtractor): title = url_basename(url) webpage = self._download_webpage(url, title) try: - # the url is in the format http://media.mtvnservices.com/fb/{mgid}.swf - fb_url = self._og_search_video_url(webpage) - mgid = url_basename(fb_url).rpartition('.')[0] + # the url can be http://media.mtvnservices.com/fb/{mgid}.swf + # or http://media.mtvnservices.com/{mgid} + og_url = self._og_search_video_url(webpage) + mgid = url_basename(og_url) + if mgid.endswith('.swf'): + mgid = mgid[:-4] except RegexNotFoundError: - mgid = self._search_regex(r'data-mgid="(.*?)"', webpage, u'mgid') + mgid = self._search_regex( + [r'data-mgid="(.*?)"', r'swfobject.embedSWF\(".*?(mgid:.*?)"'], + webpage, u'mgid') return self._get_videos_info(mgid)