diff options
| author | Sergey M․ <dstftw@gmail.com> | 2018-09-15 01:23:36 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2018-09-15 01:23:36 +0700 | 
| commit | 6f1f59f39cf934d5ccae3ca2e6fd4eaab726137f (patch) | |
| tree | 73da4e8846448125c690de5f95957c484ad64a6a | |
| parent | 15bf2ca0da0ae94dbc6c3b76c89910ceaea88bd9 (diff) | |
[extractor/common] Introduce channel meta fields
| -rw-r--r-- | youtube_dl/extractor/common.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index b8bbaf81a..8eab5947f 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -211,6 +211,11 @@ class InfoExtractor(object):                      If not explicitly set, calculated from timestamp.      uploader_id:    Nickname or id of the video uploader.      uploader_url:   Full URL to a personal webpage of the video uploader. +    channel:        Full name of the channel the video is uploaded on. +                    Note that channel fields may or may noy repeat uploader +                    fields. This depends on a particular extractor. +    channel_id:     Id of the channel. +    channel_url:    Full URL to a channel webpage.      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  | 
