diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 03:34:28 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-12 03:34:28 +0100 |
commit | f5e43bc695947989d5d563f53135fb8fcfcd4081 (patch) | |
tree | 7c1aba17b1f7c5e29a8d9b39222dae93d064819f /youtube_dl/extractor/common.py | |
parent | 6a5308ab499ef656fca65b6f22fd02c47486d94e (diff) |
[vine] Provide alt_title (Fixes #4448)
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 2277ec6ab..c2e24def1 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -118,6 +118,7 @@ class InfoExtractor(object): The following fields are optional: + alt_title: A secondary title of the video. display_id An alternative identifier for the video, not necessarily unique, but available before title. Typically, id is something like "4234987", title "Dancing naked mole rats", @@ -129,7 +130,7 @@ class InfoExtractor(object): * "resolution" (optional, string "{width}x{height"}, deprecated) thumbnail: Full URL to a video thumbnail image. - description: One-line video description. + description: Full video description. uploader: Full name of the video uploader. timestamp: UNIX timestamp of the moment the video became available. upload_date: Video upload date (YYYYMMDD). |