mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[southparkstudios] add support for http://www.southparkstudios.com/full-episodes/* urls (closes #1469)
This commit is contained in:
		@@ -5,7 +5,7 @@ from .mtv import MTVIE, _media_xml_tag
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class SouthParkStudiosIE(MTVIE):
 | 
					class SouthParkStudiosIE(MTVIE):
 | 
				
			||||||
    IE_NAME = u'southparkstudios.com'
 | 
					    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'
 | 
					    _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -23,7 +23,11 @@ class SouthParkStudiosIE(MTVIE):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    def _get_thumbnail_url(self, uri, itemdoc):
 | 
					    def _get_thumbnail_url(self, uri, itemdoc):
 | 
				
			||||||
        search_path = '%s/%s' % (_media_xml_tag('group'), _media_xml_tag('thumbnail'))
 | 
					        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):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        mobj = re.match(self._VALID_URL, url)
 | 
					        mobj = re.match(self._VALID_URL, url)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user