[tvplay] Don't raise an exception if `is_geo_blocked` is True
authorNaglis Jonaitis <njonaitis@gmail.com>
Thu, 11 Dec 2014 15:07:50 +0000 (17:07 +0200)
committerNaglis Jonaitis <njonaitis@gmail.com>
Thu, 11 Dec 2014 15:07:50 +0000 (17:07 +0200)
Videos which return `is_geo_blocked' to be True can actually be downloaded from
the country to which the video is restricted

youtube_dl/extractor/tvplay.py

index eb94737546fb725e992249d356588417d90ad81a..0157392cce30984f62024f1c9588cfed5b257cd2 100644 (file)
@@ -182,8 +182,8 @@ class TVPlayIE(InfoExtractor):
             'http://playapi.mtgx.tv/v1/videos/%s' % video_id, video_id, 'Downloading video JSON')
 
         if video['is_geo_blocked']:
-            raise ExtractorError(
-                'This content is not available in your country due to copyright reasons', expected=True)
+            self.report_warning(
+                'This content might not be available in your country due to copyright reasons')
 
         streams = self._download_json(
             'http://playapi.mtgx.tv/v1/videos/stream/%s' % video_id, video_id, 'Downloading streams JSON')