mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 20:17:22 +01:00
[youtube] Fix non-fatal errors in fetching player
This commit is contained in:
parent
519804a92f
commit
1276a43a77
@ -1911,10 +1911,12 @@ def _extract_player_info(cls, player_url):
|
||||
def _load_player(self, video_id, player_url, fatal=True) -> bool:
|
||||
player_id = self._extract_player_info(player_url)
|
||||
if player_id not in self._code_cache:
|
||||
self._code_cache[player_id] = self._download_webpage(
|
||||
code = self._download_webpage(
|
||||
player_url, video_id, fatal=fatal,
|
||||
note='Downloading player ' + player_id,
|
||||
errnote='Download of %s failed' % player_url)
|
||||
if code:
|
||||
self._code_cache[player_id] = code
|
||||
return player_id in self._code_cache
|
||||
|
||||
def _extract_signature_function(self, video_id, player_url, example_sig):
|
||||
|
Loading…
Reference in New Issue
Block a user