mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[youtube] Fix player ID display
This commit is contained in:
parent
916c145217
commit
b081cebefa
1 changed files with 2 additions and 1 deletions
|
@ -836,7 +836,8 @@ def _map_to_format_list(urlmap):
|
|||
player_desc = 'flash player %s' % player_version
|
||||
else:
|
||||
player_version = self._search_regex(
|
||||
r'html5player-(.+?)\.js', video_webpage,
|
||||
r'html5player-([^/]+?)(?:/html5player)?\.js',
|
||||
player_url,
|
||||
'html5 player', fatal=False)
|
||||
player_desc = u'html5 player %s' % player_version
|
||||
|
||||
|
|
Loading…
Reference in a new issue