mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
[youtube] fix condition always being evaluated to true
This commit is contained in:
parent
d69cf69a6a
commit
c7253e2e8c
1 changed files with 1 additions and 1 deletions
|
@ -486,7 +486,7 @@ def _real_extract(self, url):
|
|||
mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
|
||||
info = json.loads(mobj.group(1))
|
||||
args = info['args']
|
||||
if args.get('ptk','') == 'vevo' or 'dashmpd':
|
||||
if args.get('ptk','') == 'vevo' or 'dashmpd' in args:
|
||||
# Vevo videos with encrypted signatures
|
||||
self.to_screen(u'%s: Vevo video detected.' % video_id)
|
||||
video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
|
||||
|
|
Loading…
Reference in a new issue