aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-10 23:36:30 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-07-10 23:36:30 +0200
commita4311547064bd5f4a58922137c74cc8b0e95343d (patch)
tree02c0d487a2c4a86262fa1c82d5da01b0b1c74c56 /youtube_dl/YoutubeDL.py
parentcfe50f04edba5235ec0f33a95fe2093a62b53b62 (diff)
downloadyoutube-dl-a4311547064bd5f4a58922137c74cc8b0e95343d.tar.xz
Set the playlist_index and playlist fields for already resolved video results.
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rw-r--r--youtube_dl/YoutubeDL.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index d3281fed2..e24706115 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -348,6 +348,7 @@ class YoutubeDL(object):
result_type = ie_result.get('_type', 'video') # If not given we suppose it's a video, support the default old system
if result_type == 'video':
+ ie_result.update(extra_info)
if 'playlist' not in ie_result:
# It isn't part of a playlist
ie_result['playlist'] = None