mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	Introduce release_timestamp meta field (refs #28386)
This commit is contained in:
		| @@ -1511,14 +1511,18 @@ class YoutubeDL(object): | |||||||
|         if 'display_id' not in info_dict and 'id' in info_dict: |         if 'display_id' not in info_dict and 'id' in info_dict: | ||||||
|             info_dict['display_id'] = info_dict['id'] |             info_dict['display_id'] = info_dict['id'] | ||||||
|  |  | ||||||
|         if info_dict.get('upload_date') is None and info_dict.get('timestamp') is not None: |         for ts_key, date_key in ( | ||||||
|             # Working around out-of-range timestamp values (e.g. negative ones on Windows, |                 ('timestamp', 'upload_date'), | ||||||
|             # see http://bugs.python.org/issue1646728) |                 ('release_timestamp', 'release_date'), | ||||||
|             try: |         ): | ||||||
|                 upload_date = datetime.datetime.utcfromtimestamp(info_dict['timestamp']) |             if info_dict.get(date_key) is None and info_dict.get(ts_key) is not None: | ||||||
|                 info_dict['upload_date'] = upload_date.strftime('%Y%m%d') |                 # Working around out-of-range timestamp values (e.g. negative ones on Windows, | ||||||
|             except (ValueError, OverflowError, OSError): |                 # see http://bugs.python.org/issue1646728) | ||||||
|                 pass |                 try: | ||||||
|  |                     upload_date = datetime.datetime.utcfromtimestamp(info_dict[ts_key]) | ||||||
|  |                     info_dict[date_key] = upload_date.strftime('%Y%m%d') | ||||||
|  |                 except (ValueError, OverflowError, OSError): | ||||||
|  |                     pass | ||||||
|  |  | ||||||
|         # Auto generate title fields corresponding to the *_number fields when missing |         # Auto generate title fields corresponding to the *_number fields when missing | ||||||
|         # in order to always have clean titles. This is very common for TV series. |         # in order to always have clean titles. This is very common for TV series. | ||||||
|   | |||||||
| @@ -230,8 +230,10 @@ class InfoExtractor(object): | |||||||
|     uploader:       Full name of the video uploader. |     uploader:       Full name of the video uploader. | ||||||
|     license:        License name the video is licensed under. |     license:        License name the video is licensed under. | ||||||
|     creator:        The creator of the video. |     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. |     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). |     upload_date:    Video upload date (YYYYMMDD). | ||||||
|                     If not explicitly set, calculated from timestamp. |                     If not explicitly set, calculated from timestamp. | ||||||
|     uploader_id:    Nickname or id of the video uploader. |     uploader_id:    Nickname or id of the video uploader. | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user