Browse Source

[theplatform] allow passing geo bypass countries from other extractors

Remita Amine 4 years ago
parent
commit
2c312ab84a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      youtube_dl/extractor/theplatform.py

+ 3 - 0
youtube_dl/extractor/theplatform.py

@@ -234,6 +234,9 @@ class ThePlatformIE(ThePlatformBaseIE, AdobePassIE):
 
     def _real_extract(self, url):
         url, smuggled_data = unsmuggle_url(url, {})
+        self._initialize_geo_bypass({
+            'countries': smuggled_data.get('geo_countries'),
+        })
 
         mobj = re.match(self._VALID_URL, url)
         provider_id = mobj.group('provider_id')