diff options
author | sepro <sepro@sepr0.com> | 2025-01-26 04:32:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-26 03:32:10 +0000 |
commit | 3b4531934465580be22937fecbb6e1a3a9e2334f (patch) | |
tree | f7f077bb1cc17834b63321487872c15a737b9088 /yt_dlp/extractor/plvideo.py | |
parent | 421bc72103d1faed473a451299cd17d6abb433bb (diff) |
[cleanup] Misc (#12194)
Closes #12098, Closes #12133
Authored by: seproDev, bashonly, lonble, pjrobertson
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
Co-authored-by: Lonble <74650029+lonble@users.noreply.github.com>
Co-authored-by: Patrick Robertson <robertson.patrick@gmail.com>
Diffstat (limited to 'yt_dlp/extractor/plvideo.py')
-rw-r--r-- | yt_dlp/extractor/plvideo.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/plvideo.py b/yt_dlp/extractor/plvideo.py index 9351af10a..27009ca4c 100644 --- a/yt_dlp/extractor/plvideo.py +++ b/yt_dlp/extractor/plvideo.py @@ -26,7 +26,7 @@ class PlVideoIE(InfoExtractor): 'comment_count': int, 'tags': ['rusia', 'cuba', 'russia', 'miguel díaz-canel'], 'description': 'md5:a1a395d900d77a86542a91ee0826c115', - 'released_timestamp': 1715096124, + 'release_timestamp': 1715096124, 'channel_is_verified': True, 'like_count': int, 'timestamp': 1715095911, @@ -62,7 +62,7 @@ class PlVideoIE(InfoExtractor): 'title': 'Белоусов отменил приказы о кадровом резерве на гражданской службе', 'channel_follower_count': int, 'view_count': int, - 'released_timestamp': 1732961458, + 'release_timestamp': 1732961458, }, }] @@ -119,7 +119,7 @@ class PlVideoIE(InfoExtractor): 'channel_is_verified': ('channel', 'verified', {bool}), 'tags': ('tags', ..., {str}), 'timestamp': ('createdAt', {parse_iso8601}), - 'released_timestamp': ('publishedAt', {parse_iso8601}), + 'release_timestamp': ('publishedAt', {parse_iso8601}), 'modified_timestamp': ('updatedAt', {parse_iso8601}), 'view_count': ('stats', 'viewTotalCount', {int_or_none}), 'like_count': ('stats', 'likeCount', {int_or_none}), |