about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-12-19 03:53:44 +0700
committerSergey M․ <dstftw@gmail.com>2017-12-19 03:53:44 +0700
commit3961c6cb9d3a1c30fe31db774b0809095952f1bd (patch)
treeeea9cfa32df8e3d3b340b1346520bf47b042c96f
parent07aeced68e5aa24f3e2562aa7cb9ddd2f11b59ca (diff)
downloadyoutube-dl-3961c6cb9d3a1c30fe31db774b0809095952f1bd.tar.gz
youtube-dl-3961c6cb9d3a1c30fe31db774b0809095952f1bd.tar.xz
youtube-dl-3961c6cb9d3a1c30fe31db774b0809095952f1bd.zip
[YoutubeDL] Add support for playlist_uploader and playlist_uploader_id in output template (closes #11427, #15018)
-rw-r--r--README.md2
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index cd30d147a..47b0640ab 100644
--- a/README.md
+++ b/README.md
@@ -539,6 +539,8 @@ The basic usage is not to set any template arguments when downloading a single f
  - `playlist_index` (numeric): Index of the video in the playlist padded with leading zeros according to the total length of the playlist
  - `playlist_id` (string): Playlist identifier
  - `playlist_title` (string): Playlist title
+ - `playlist_uploader` (string): Full name of the playlist uploader
+ - `playlist_uploader_id` (string): Nickname or id of the playlist uploader
 
 Available for the video that belongs to some logical chapter or section:
 
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 68721e9ab..ace80f14b 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -975,6 +975,8 @@ class YoutubeDL(object):
                     'playlist': playlist,
                     'playlist_id': ie_result.get('id'),
                     'playlist_title': ie_result.get('title'),
+                    'playlist_uploader': ie_result.get('uploader'),
+                    'playlist_uploader_id': ie_result.get('uploader_id'),
                     'playlist_index': i + playliststart,
                     'extractor': ie_result['extractor'],
                     'webpage_url': ie_result['webpage_url'],