1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-20 21:02:57 +08:00

[fix] Unable to extract JS player URL

Closes #12
This commit is contained in:
Dominika 2020-10-29 11:08:31 -04:00
parent 8462b9408a
commit 6a82b63f29
No known key found for this signature in database
GPG Key ID: B4A5A6DCA70F861F

View File

@ -1955,7 +1955,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
if cipher:
if 's' in url_data or self._downloader.params.get('youtube_include_dash_manifest', True):
ASSETS_RE = r'"assets":.+?"js":\s*("[^"]+")'
ASSETS_RE = [ r'"assets":.+?"js":\s*("[^"]+")', r'"jsUrl":("[^"]+")' ]
jsplayer_url_json = self._search_regex(
ASSETS_RE,
embed_webpage if age_gate else video_webpage,