Fix the extraction of full-episodes urls from southpark.com (fixes #2278)
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Thu, 30 Jan 2014 18:04:33 +0000 (19:04 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Thu, 30 Jan 2014 18:04:33 +0000 (19:04 +0100)
Added an additional regex to the generic _real_extract method of MTVServicesInfoExtractor

youtube_dl/extractor/mtv.py

index f6f31bfdc53c6cb0685cfb74e9cc59b56269d77f..4521451ac933baabce786c76813e3e8407298b65 100644 (file)
@@ -119,7 +119,9 @@ class MTVServicesInfoExtractor(InfoExtractor):
             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)