[theplatform] pass geo verification headers to smil request(closes #10146)
authorRemita Amine <remitamine@gmail.com>
Wed, 21 Dec 2016 19:59:03 +0000 (20:59 +0100)
committerRemita Amine <remitamine@gmail.com>
Wed, 21 Dec 2016 19:59:03 +0000 (20:59 +0100)
youtube_dl/extractor/theplatform.py

index cfbf7f4e1562c78ea1d5ae44437694a5325eb70b..0405bd6b0f66a65e7278d74f555f43c1c5beeed7 100644 (file)
@@ -33,7 +33,9 @@ _x = lambda p: xpath_with_ns(p, {'smil': default_ns})
 
 class ThePlatformBaseIE(OnceIE):
     def _extract_theplatform_smil(self, smil_url, video_id, note='Downloading SMIL data'):
-        meta = self._download_xml(smil_url, video_id, note=note, query={'format': 'SMIL'})
+        meta = self._download_xml(
+            smil_url, video_id, note=note, query={'format': 'SMIL'},
+            headers=self.geo_verification_headers())
         error_element = find_xpath_attr(meta, _x('.//smil:ref'), 'src')
         if error_element is not None and error_element.attrib['src'].startswith(
                 'http://link.theplatform.com/s/errorFiles/Unavailable.'):