diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:06:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:06:10 +0000 |
commit | 7e21328585afda6d66f98ca476301680eeffac32 (patch) | |
tree | 266a4e7b20443f94572748781d71fc0375a15037 /yt_dlp/extractor/trtcocuk.py | |
parent | Adding upstream version 2024.05.27. (diff) | |
download | yt-dlp-7e21328585afda6d66f98ca476301680eeffac32.tar.xz yt-dlp-7e21328585afda6d66f98ca476301680eeffac32.zip |
Adding upstream version 2024.07.01.upstream/2024.07.01
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'yt_dlp/extractor/trtcocuk.py')
-rw-r--r-- | yt_dlp/extractor/trtcocuk.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/trtcocuk.py b/yt_dlp/extractor/trtcocuk.py index f27f5a1..0c899f1 100644 --- a/yt_dlp/extractor/trtcocuk.py +++ b/yt_dlp/extractor/trtcocuk.py @@ -15,7 +15,7 @@ class TrtCocukVideoIE(InfoExtractor): 'title': 'Kaptan Pengu ve Arkadaşları 1 Bölüm İzle TRT Çocuk', 'release_date': '20201209', 'release_timestamp': 1607513774, - } + }, }, { 'url': 'https://www.trtcocuk.net.tr/video/sef-rokanin-lezzet-dunyasi-17', 'info_dict': { @@ -23,7 +23,7 @@ class TrtCocukVideoIE(InfoExtractor): 'ext': 'mp4', 'series': '"Şef Roka\'nın Lezzet Dünyası"', 'title': 'Şef Roka\'nın Lezzet Dünyası 17 Bölüm İzle TRT Çocuk', - } + }, }] def _real_extract(self, url): @@ -44,5 +44,5 @@ class TrtCocukVideoIE(InfoExtractor): 'season_number': int_or_none(nuxtjs_data.get('season')), 'release_timestamp': parse_iso8601(nuxtjs_data.get('publishedDate')), 'series': traverse_obj(nuxtjs_data, ('show', 0, 'title')), - 'title': self._html_extract_title(webpage) # TODO: get better title + 'title': self._html_extract_title(webpage), # TODO: get better title } |