summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-21 10:58:43 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-09-21 10:58:43 +0200
commit69b227a9bc75a75e9156f05d08c3c69337be64ff (patch)
tree6b589d6df41296ea01cc12cead4f8a6fdf8203c0
parent0fd49457f5257dbe317c69314ee57a6c485d41a3 (diff)
downloadyoutube-dl-69b227a9bc75a75e9156f05d08c3c69337be64ff.tar.gz
youtube-dl-69b227a9bc75a75e9156f05d08c3c69337be64ff.tar.xz
youtube-dl-69b227a9bc75a75e9156f05d08c3c69337be64ff.zip
[southparkstudios] add support for http://www.southparkstudios.com/full-episodes/* urls (closes #1469)
-rw-r--r--youtube_dl/extractor/southparkstudios.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/youtube_dl/extractor/southparkstudios.py b/youtube_dl/extractor/southparkstudios.py
index 25f799a27..1a611d3bb 100644
--- a/youtube_dl/extractor/southparkstudios.py
+++ b/youtube_dl/extractor/southparkstudios.py
@@ -5,7 +5,7 @@ from .mtv import MTVIE, _media_xml_tag
 
 class SouthParkStudiosIE(MTVIE):
     IE_NAME = u'southparkstudios.com'
-    _VALID_URL = r'https?://www\.southparkstudios\.com/clips/(?P<id>\d+)'
+    _VALID_URL = r'https?://www\.southparkstudios\.com/(clips|full-episodes)/(?P<id>.+?)(\?|#|$)'
 
     _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
 
@@ -23,7 +23,11 @@ class SouthParkStudiosIE(MTVIE):
 
     def _get_thumbnail_url(self, uri, itemdoc):
         search_path = '%s/%s' % (_media_xml_tag('group'), _media_xml_tag('thumbnail'))
-        return itemdoc.find(search_path).attrib['url']
+        thumb_node = itemdoc.find(search_path)
+        if thumb_node is None:
+            return None
+        else:
+            return thumb_node.attrib['url']
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)