mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-17 01:25:11 +00:00
[tvplay] Don't raise an exception if is_geo_blocked
is True
Videos which return `is_geo_blocked' to be True can actually be downloaded from the country to which the video is restricted
This commit is contained in:
parent
3c1b81b957
commit
158731f83e
1 changed files with 2 additions and 2 deletions
|
@ -182,8 +182,8 @@ def _real_extract(self, url):
|
||||||
'http://playapi.mtgx.tv/v1/videos/%s' % video_id, video_id, 'Downloading video JSON')
|
'http://playapi.mtgx.tv/v1/videos/%s' % video_id, video_id, 'Downloading video JSON')
|
||||||
|
|
||||||
if video['is_geo_blocked']:
|
if video['is_geo_blocked']:
|
||||||
raise ExtractorError(
|
self.report_warning(
|
||||||
'This content is not available in your country due to copyright reasons', expected=True)
|
'This content might not be available in your country due to copyright reasons')
|
||||||
|
|
||||||
streams = self._download_json(
|
streams = self._download_json(
|
||||||
'http://playapi.mtgx.tv/v1/videos/stream/%s' % video_id, video_id, 'Downloading streams JSON')
|
'http://playapi.mtgx.tv/v1/videos/stream/%s' % video_id, video_id, 'Downloading streams JSON')
|
||||||
|
|
Loading…
Reference in a new issue