youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 70bfab0e9ac8ddb7da67d71633c8c4b0704054cf
parent f0e31e32c940d8529353f40bd2426163c3199216
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 23 Jul 2017 21:00:19 +0700

[mtv] Improve thumbnal extraction

Diffstat:
Myoutube_dl/extractor/mtv.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py @@ -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