Skip to content

Commit

Permalink
[vice] fix extraction for locked videos(closes #16248)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Jan 27, 2019
1 parent 30cd1a5 commit 1fcc916
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions youtube_dl/extractor/vice.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ class ViceIE(AdobePassIE):
'url': 'https://www.viceland.com/en_us/video/thursday-march-1-2018/5a8f2d7ff1cdb332dd446ec1',
'only_matching': True,
}]
_PREPLAY_HOST = 'vms.vice'

@staticmethod
def _extract_urls(webpage):
Expand Down Expand Up @@ -158,9 +157,8 @@ def _real_extract(self, url):
})

try:
host = 'www.viceland' if is_locked else self._PREPLAY_HOST
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)
except ExtractorError as e:
if isinstance(e.cause, compat_HTTPError) and e.cause.code in (400, 401):
Expand Down

0 comments on commit 1fcc916

Please sign in to comment.