diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-05-26 12:43:14 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-05-26 23:22:54 +0800 |
commit | fd545fc6d1a5b489830e80c421f7e09264e0c80f (patch) | |
tree | a7a6f00414afaff0994bf88f66f6667330289f34 | |
parent | 97067db2ae32b18ef573af99b91d36026b4b1d05 (diff) |
Revert "[youtube] Don't use the DASH manifest from 'get_video_info' if 'use_cipher_signature' is True (#5118)"
This reverts commit 87dc451108b278eb5e5600a0159bdbd337272392.
-rw-r--r-- | youtube_dl/extractor/youtube.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index d66693c0c..d6c098706 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -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: |