[youtube] partial fix for #2857

This commit is contained in:
Mort Yao 2020-12-26 18:45:55 +01:00
parent 5a890eac53
commit 6be1d0308e
No known key found for this signature in database
GPG Key ID: 07DA00CB78203251

View File

@ -203,6 +203,8 @@ class YouTube(VideoExtractor):
# Parse video page (for DASH) # Parse video page (for DASH)
video_page = get_content('https://www.youtube.com/watch?v=%s' % self.vid) video_page = get_content('https://www.youtube.com/watch?v=%s' % self.vid)
try: try:
try:
# Complete ytplayer_config
ytplayer_config = json.loads(re.search('ytplayer.config\s*=\s*([^\n]+?});', video_page).group(1)) ytplayer_config = json.loads(re.search('ytplayer.config\s*=\s*([^\n]+?});', video_page).group(1))
# Workaround: get_video_info returns bad s. Why? # Workaround: get_video_info returns bad s. Why?
@ -220,11 +222,24 @@ class YouTube(VideoExtractor):
else: else:
self.html5player = None self.html5player = None
except:
# ytplayer_config = {args:{raw_player_response:ytInitialPlayerResponse}}
ytInitialPlayerResponse = json.loads(re.search('ytInitialPlayerResponse\s*=\s*([^\n]+?});', video_page).group(1))
stream_list = ytInitialPlayerResponse['streamingData']['formats']
#stream_list = ytInitialPlayerResponse['streamingData']['adaptiveFormats']
if re.search('([^"]*/base\.js)"', video_page):
self.html5player = 'https://www.youtube.com' + re.search('([^"]*/base\.js)"', video_page).group(1)
else:
self.html5player = None
except: except:
if 'url_encoded_fmt_stream_map' not in video_info: if 'url_encoded_fmt_stream_map' not in video_info:
stream_list = json.loads(video_info['player_response'][0])['streamingData']['formats'] stream_list = json.loads(video_info['player_response'][0])['streamingData']['formats']
else: else:
stream_list = video_info['url_encoded_fmt_stream_map'][0].split(',') stream_list = video_info['url_encoded_fmt_stream_map'][0].split(',')
if re.search('([^"]*/base\.js)"', video_page): if re.search('([^"]*/base\.js)"', video_page):
self.html5player = 'https://www.youtube.com' + re.search('([^"]*/base\.js)"', video_page).group(1) self.html5player = 'https://www.youtube.com' + re.search('([^"]*/base\.js)"', video_page).group(1)
else: else: