diff options
author | coletdjnz <colethedj@protonmail.com> | 2022-01-21 06:04:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 06:04:36 +0000 |
commit | 6c73052c0a44c90dad22468d598e1bc6aba7534c (patch) | |
tree | be6dbde25eeff71a346de0771b8fd7e7dd4ddd92 /yt_dlp/extractor/common.py | |
parent | 593e43c0306aeb70ff8849ce30079f18bb088f00 (diff) | |
download | hypervideo-pre-6c73052c0a44c90dad22468d598e1bc6aba7534c.tar.lz hypervideo-pre-6c73052c0a44c90dad22468d598e1bc6aba7534c.tar.xz hypervideo-pre-6c73052c0a44c90dad22468d598e1bc6aba7534c.zip |
[youtube] Extract channel subscriber count (#2399)
Closes #2350
* Adds `channel_follower_count` field
Authored-by: coletdjnz
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 3f5e15103..e289a4ef8 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -261,6 +261,7 @@ class InfoExtractor(object): fields. This depends on a particular extractor. channel_id: Id of the channel. channel_url: Full URL to a channel webpage. + channel_follower_count: Number of followers of the channel. location: Physical location where the video was filmed. subtitles: The available subtitles as a dictionary in the format {tag: subformats}. "tag" is usually a language code, and |