mirror of
https://github.com/yt-dlp/yt-dlp
synced 2024-12-25 21:59:04 +01:00
[duboku] Handle error
This commit is contained in:
parent
59cbba8cc8
commit
227277217b
1 changed files with 4 additions and 1 deletions
|
@ -138,7 +138,10 @@ class DubokuIE(InfoExtractor):
|
|||
|
||||
sign_url = 'https://w.duboku.io/static/player/vidjs25.php'
|
||||
sign_html = self._download_webpage(sign_url, video_id)
|
||||
sign = re.search(r'encodeURIComponent\(\'(.*)\'\);', sign_html).group(1)
|
||||
sign = re.search(r'encodeURIComponent\(\'(.*)\'\);', sign_html)
|
||||
if not sign:
|
||||
raise ExtractorError('Cannot find sign in player')
|
||||
sign = sign.group(1)
|
||||
|
||||
# if it is an embedded iframe, maybe it's an external source
|
||||
headers = {'Referer': webpage_url}
|
||||
|
|
Loading…
Reference in a new issue