[Nova] fix extractor (#807)

Fixes: https://github.com/ytdl-org/youtube-dl/issues/27840
Authored by: std-move
This commit is contained in:
std-move 2021-08-29 03:34:42 +02:00 committed by GitHub
parent 58f68fe703
commit 2fc14b9925
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ def _real_extract(self, url):
player = self._parse_json( player = self._parse_json(
self._search_regex( self._search_regex(
r'Player\.init\s*\([^,]+,\s*({.+?})\s*,\s*{.+?}\s*\)\s*;', r'Player\.init\s*\([^,]+,\s*(?:\w+\s*\?\s*{.+?}\s*:\s*)?({.+})\s*,\s*{.+?}\s*\)\s*;',
webpage, 'player', default='{}'), video_id, fatal=False) webpage, 'player', default='{}'), video_id, fatal=False)
if player: if player:
for format_id, format_list in player['tracks'].items(): for format_id, format_list in player['tracks'].items():