[ie/cineverse] Detect when login required (#9081)

Partially addresses #9072
Authored by: garret1317
pull/8711/head
garret 4 months ago committed by GitHub
parent a2bac6b7ad
commit fc2cc626f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -67,7 +67,10 @@ class CineverseIE(CineverseBaseIE):
html = self._download_webpage(url, video_id)
idetails = self._search_nextjs_data(html, video_id)['props']['pageProps']['idetails']
if idetails.get('err_code') == 1200:
err_code = idetails.get('err_code')
if err_code == 1002:
self.raise_login_required()
elif err_code == 1200:
self.raise_geo_restricted(
'This video is not available from your location due to geo restriction. '
'You may be able to bypass it by using the /details/ page instead of the /watch/ page',

Loading…
Cancel
Save