[mtv] Improve detection of geoblocked videos
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Sat, 8 Mar 2014 18:43:18 +0000 (19:43 +0100)
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Sat, 8 Mar 2014 18:46:34 +0000 (19:46 +0100)
youtube_dl/extractor/mtv.py

index 5447b6c0cab098b895eda0e9f2b3b266fb65a7b0..3a33cc9b6ad6fd64353e67a26ddb67935d050e08 100644 (file)
@@ -40,8 +40,9 @@ class MTVServicesInfoExtractor(InfoExtractor):
             return thumb_node.attrib['url']
 
     def _extract_video_formats(self, mdoc):
-        if re.match(r'.*/error_country_block\.swf$', mdoc.find('.//src').text) is not None:
-            raise ExtractorError('This video is not available from your country.', expected=True)
+        if re.match(r'.*/(error_country_block\.swf|geoblock\.mp4)$', mdoc.find('.//src').text) is not None:
+            raise ExtractorError('This video is not available from your country.',
+                expected=True)
 
         formats = []
         for rendition in mdoc.findall('.//rendition'):