mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
[YoutubeDL] Propagate overridden metadata to IE results of type url (closes #11163)
This commit is contained in:
parent
413c1f8e2f
commit
0563f7ac6e
@ -851,7 +851,14 @@ def process_ie_result(self, ie_result, download=True, extra_info={}):
|
|||||||
new_result = info.copy()
|
new_result = info.copy()
|
||||||
new_result.update(force_properties)
|
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(
|
return self.process_ie_result(
|
||||||
new_result, download=download, extra_info=extra_info)
|
new_result, download=download, extra_info=extra_info)
|
||||||
|
Loading…
Reference in New Issue
Block a user