about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-21 00:25:46 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-21 00:25:46 +0100
commitdfd5313afdf00250d9b8a4e103bd7647713f1af3 (patch)
tree5e8982136f6b90ec7abd9cb4ef123e77da4cda77
parentbe53e2a73734bfa3f0f5c0d0146b08e577a0b998 (diff)
downloadyoutube-dl-dfd5313afdf00250d9b8a4e103bd7647713f1af3.tar.gz
youtube-dl-dfd5313afdf00250d9b8a4e103bd7647713f1af3.tar.xz
youtube-dl-dfd5313afdf00250d9b8a4e103bd7647713f1af3.zip
[YoutubeDL] Support new _type multi_video
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 79f5e995e..0a3569304 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -624,7 +624,7 @@ class YoutubeDL(object):
 
             return self.process_ie_result(
                 new_result, download=download, extra_info=extra_info)
-        elif result_type == 'playlist':
+        elif result_type == 'playlist' or playlist == 'multi_video':
             # We process each entry in the playlist
             playlist = ie_result.get('title', None) or ie_result.get('id', None)
             self.to_screen('[download] Downloading playlist: %s' % playlist)