From 137f07c27a88b07df57df5b2cdebebe3c7722bac Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 5 Aug 2024 11:06:10 +0200 Subject: Merging upstream version 2024.07.01. Signed-off-by: Daniel Baumann --- yt_dlp/extractor/rtvs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'yt_dlp/extractor/rtvs.py') diff --git a/yt_dlp/extractor/rtvs.py b/yt_dlp/extractor/rtvs.py index defb8d7..927da57 100644 --- a/yt_dlp/extractor/rtvs.py +++ b/yt_dlp/extractor/rtvs.py @@ -21,7 +21,7 @@ class RTVSIE(InfoExtractor): 'duration': 2854, 'thumbnail': 'https://www.rtvs.sk/media/a501/image/file/2/0000/b1R8.rtvs.jpg', 'display_id': '135331', - } + }, }, { # tv archive 'url': 'http://www.rtvs.sk/televizia/archiv/8249/63118', @@ -34,7 +34,7 @@ class RTVSIE(InfoExtractor): 'timestamp': 1428555900, 'upload_date': '20150409', 'duration': 4986, - } + }, }, { # tv archive 'url': 'https://www.rtvs.sk/televizia/archiv/18083?utm_source=web&utm_medium=rozcestnik&utm_campaign=Robin', @@ -48,7 +48,7 @@ class RTVSIE(InfoExtractor): 'duration': 831, 'upload_date': '20211111', 'thumbnail': 'https://www.rtvs.sk/media/a501/image/file/2/0916/robin.jpg', - } + }, }] def _real_extract(self, url): @@ -80,5 +80,5 @@ class RTVSIE(InfoExtractor): 'duration': parse_duration(traverse_obj(data, ('playlist', 0, 'length'))), 'thumbnail': traverse_obj(data, ('playlist', 0, 'image')), 'timestamp': unified_timestamp(traverse_obj(data, ('playlist', 0, 'datetime_create'))), - 'formats': formats + 'formats': formats, } -- cgit v1.2.3