1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-03-12 19:27:25 +08:00

Revert "[youtube] Don't use the DASH manifest from 'get_video_info' if 'use_cipher_signature' is True (#5118)"

This reverts commit 87dc451108b278eb5e5600a0159bdbd337272392.
This commit is contained in:
Yen Chi Hsuan 2017-05-26 12:43:14 +08:00
parent b7f8749304
commit 22a0614943

View File

@ -1481,8 +1481,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
if not video_info_webpage:
continue
get_video_info = compat_parse_qs(video_info_webpage)
if get_video_info.get('use_cipher_signature') != ['True']:
add_dash_mpd(get_video_info)
add_dash_mpd(get_video_info)
if not video_info:
video_info = get_video_info
if 'token' in get_video_info: