aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/YoutubeDL.py
diff options
context:
space:
mode:
authorbashonly <88596187+bashonly@users.noreply.github.com>2024-07-01 11:48:11 -0500
committerGitHub <noreply@github.com>2024-07-01 16:48:11 +0000
commit55e3e6fd21e741ec5ae3d8624de5e5ea345810eb (patch)
tree995cab07b7a8dbcb699c1efa57bd4c889e8e889e /yt_dlp/YoutubeDL.py
parent36e8dd832579b5375a0f6626af4268b86b4eb21a (diff)
Add `playlist_channel` and `playlist_channel_id` fields (#10266)
Authored by: bashonly
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r--yt_dlp/YoutubeDL.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py
index 7ed01bf84..ba29b29dc 100644
--- a/yt_dlp/YoutubeDL.py
+++ b/yt_dlp/YoutubeDL.py
@@ -1926,6 +1926,8 @@ class YoutubeDL:
'playlist_title': ie_result.get('title'),
'playlist_uploader': ie_result.get('uploader'),
'playlist_uploader_id': ie_result.get('uploader_id'),
+ 'playlist_channel': ie_result.get('channel'),
+ 'playlist_channel_id': ie_result.get('channel_id'),
**kwargs,
}
if strict: