We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca4456e commit 87dc451Copy full SHA for 87dc451
1 file changed
youtube_dl/extractor/youtube.py
@@ -967,7 +967,8 @@ def add_dash_mpd(video_info):
967
video_id, note=False,
968
errnote='unable to download video info webpage')
969
get_video_info = compat_parse_qs(video_info_webpage)
970
- add_dash_mpd(get_video_info)
+ if get_video_info.get('use_cipher_signature') != ['True']:
971
+ add_dash_mpd(get_video_info)
972
if not video_info:
973
video_info = get_video_info
974
if 'token' in get_video_info:
0 commit comments