diff options
author | Sergey M․ <dstftw@gmail.com> | 2021-03-10 03:36:31 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2021-03-10 03:36:31 +0700 |
commit | 477bff69065872fff6bab5c3a1b0512018fbb6eb (patch) | |
tree | d8b63d6d605da361566d4d44a002406697a7f53e /youtube_dl/extractor/common.py | |
parent | 1a1ccd9a6e8e9e90ab129e89c2524ab3eb9ed2ae (diff) |
Introduce release_timestamp meta field (refs #28386)
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 8eb110f4e..d3b6724df 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -230,8 +230,10 @@ class InfoExtractor(object): uploader: Full name of the video uploader. license: License name the video is licensed under. creator: The creator of the video. + release_timestamp: UNIX timestamp of the moment the video was released. release_date: The date (YYYYMMDD) when the video was released. - timestamp: UNIX timestamp of the moment the video became available. + timestamp: UNIX timestamp of the moment the video became available + (uploaded). upload_date: Video upload date (YYYYMMDD). If not explicitly set, calculated from timestamp. uploader_id: Nickname or id of the video uploader. |