Pārlūkot izejas kodu

[vice] fix extraction for locked videos(closes #16248)

Remita Amine 6 gadi atpakaļ
vecāks
revīzija
1fcc91663b
1 mainītis faili ar 1 papildinājumiem un 3 dzēšanām
  1. 1 3
      youtube_dl/extractor/vice.py

+ 1 - 3
youtube_dl/extractor/vice.py

@@ -94,7 +94,6 @@ class ViceIE(AdobePassIE):
         'url': 'https://www.viceland.com/en_us/video/thursday-march-1-2018/5a8f2d7ff1cdb332dd446ec1',
         'url': 'https://www.viceland.com/en_us/video/thursday-march-1-2018/5a8f2d7ff1cdb332dd446ec1',
         'only_matching': True,
         'only_matching': True,
     }]
     }]
-    _PREPLAY_HOST = 'vms.vice'
 
 
     @staticmethod
     @staticmethod
     def _extract_urls(webpage):
     def _extract_urls(webpage):
@@ -158,9 +157,8 @@ class ViceIE(AdobePassIE):
         })
         })
 
 
         try:
         try:
-            host = 'www.viceland' if is_locked else self._PREPLAY_HOST
             preplay = self._download_json(
             preplay = self._download_json(
-                'https://%s.com/%s/video/preplay/%s' % (host, locale, video_id),
+                'https://vms.vice.com/%s/video/preplay/%s' % (locale, video_id),
                 video_id, query=query)
                 video_id, query=query)
         except ExtractorError as e:
         except ExtractorError as e:
             if isinstance(e.cause, compat_HTTPError) and e.cause.code in (400, 401):
             if isinstance(e.cause, compat_HTTPError) and e.cause.code in (400, 401):