mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[jwplatform] Add support for bypass geo restriction
This commit is contained in:
		| @@ -4,6 +4,7 @@ from __future__ import unicode_literals | |||||||
| import re | import re | ||||||
|  |  | ||||||
| from .common import InfoExtractor | from .common import InfoExtractor | ||||||
|  | from ..utils import unsmuggle_url | ||||||
|  |  | ||||||
|  |  | ||||||
| class JWPlatformIE(InfoExtractor): | class JWPlatformIE(InfoExtractor): | ||||||
| @@ -36,6 +37,10 @@ class JWPlatformIE(InfoExtractor): | |||||||
|             webpage) |             webpage) | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|  |         url, smuggled_data = unsmuggle_url(url, {}) | ||||||
|  |         self._initialize_geo_bypass({ | ||||||
|  |             'countries': smuggled_data.get('geo_countries'), | ||||||
|  |         }) | ||||||
|         video_id = self._match_id(url) |         video_id = self._match_id(url) | ||||||
|         json_data = self._download_json('https://cdn.jwplayer.com/v2/media/' + video_id, video_id) |         json_data = self._download_json('https://cdn.jwplayer.com/v2/media/' + video_id, video_id) | ||||||
|         return self._parse_jwplayer_data(json_data, video_id) |         return self._parse_jwplayer_data(json_data, video_id) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․