diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-03-24 07:00:22 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-03-24 07:30:25 +0530 |
commit | ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d (patch) | |
tree | 63d6dddc4096b4a5710f334359cb33414a1e4e7a /yt_dlp/extractor/common.py | |
parent | 231025c4632d7a48540b18997c715a8df8a6ff8e (diff) | |
download | hypervideo-pre-ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d.tar.lz hypervideo-pre-ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d.tar.xz hypervideo-pre-ae6a1b95857c7ba1392e37be99b9ee2b66b14b1d.zip |
[docs] Minor improvements
Closes #3127, Closes #3081, Closes #3177
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index a2e41db3b..d3d13c40c 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -248,14 +248,14 @@ class InfoExtractor(object): license: License name the video is licensed under. creator: The creator of the video. timestamp: UNIX timestamp of the moment the video was uploaded - upload_date: Video upload date (YYYYMMDD). + upload_date: Video upload date in UTC (YYYYMMDD). If not explicitly set, calculated from timestamp release_timestamp: UNIX timestamp of the moment the video was released. If it is not clear whether to use timestamp or this, use the former - release_date: The date (YYYYMMDD) when the video was released. + release_date: The date (YYYYMMDD) when the video was released in UTC. If not explicitly set, calculated from release_timestamp modified_timestamp: UNIX timestamp of the moment the video was last modified. - modified_date: The date (YYYYMMDD) when the video was last modified. + modified_date: The date (YYYYMMDD) when the video was last modified in UTC. If not explicitly set, calculated from modified_timestamp uploader_id: Nickname or id of the video uploader. uploader_url: Full URL to a personal webpage of the video uploader. |