Browse Source

[YoutubeDL] Propagate overridden metadata to IE results of type url (closes #11163)

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
0563f7ac6e
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      youtube_dl/YoutubeDL.py

+ 8
- 1
youtube_dl/YoutubeDL.py View File

@ -851,7 +851,14 @@ class YoutubeDL(object):
new_result = info.copy()
new_result.update(force_properties)
assert new_result.get('_type') != 'url_transparent'
# Extracted info may not be a video result (i.e.
# info.get('_type', 'video') != video) but rather an url or
# url_transparent. In such cases outer metadata (from ie_result)
# should be propagated to inner one (info). For this to happen
# _type of info should be overridden with url_transparent. This
# fixes issue from https://github.com/rg3/youtube-dl/pull/11163.
if new_result.get('_type') == 'url':
new_result['_type'] = 'url_transparent'
return self.process_ie_result(
new_result, download=download, extra_info=extra_info)


Loading…
Cancel
Save