mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-06-27 17:08:32 +00:00
[duboku] Handle error
This commit is contained in:
parent
59cbba8cc8
commit
227277217b
@ -138,7 +138,10 @@ def _real_extract(self, url):
|
||||
|
||||
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 New Issue
Block a user