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/rbgtum.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/rbgtum.py')
-rw-r--r-- | yt_dlp/extractor/rbgtum.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/yt_dlp/extractor/rbgtum.py b/yt_dlp/extractor/rbgtum.py index 5f2d0c1..5bb4655 100644 --- a/yt_dlp/extractor/rbgtum.py +++ b/yt_dlp/extractor/rbgtum.py @@ -15,7 +15,7 @@ class RbgTumIE(InfoExtractor): 'ext': 'mp4', 'title': 'Lecture: October 18. 2022', 'series': 'Concepts of C++ programming (IN2377)', - } + }, }, { # Presentation only 'url': 'https://live.rbg.tum.de/w/I2DL/12349/PRES', @@ -25,7 +25,7 @@ class RbgTumIE(InfoExtractor): 'ext': 'mp4', 'title': 'Lecture 3: Introduction to Neural Networks', 'series': 'Introduction to Deep Learning (IN2346)', - } + }, }, { # Camera only 'url': 'https://live.rbg.tum.de/w/fvv-info/16130/CAM', @@ -35,11 +35,11 @@ class RbgTumIE(InfoExtractor): 'ext': 'mp4', 'title': 'Fachschaftsvollversammlung', 'series': 'Fachschaftsvollversammlung Informatik', - } + }, }, { 'url': 'https://tum.live/w/linalginfo/27102', 'only_matching': True, - }, ] + }] def _real_extract(self, url): video_id = self._match_id(url) @@ -84,7 +84,7 @@ class RbgTumCourseIE(InfoExtractor): }, { 'url': 'https://tum.live/old/course/2023/S/linalginfo', 'only_matching': True, - }, ] + }] def _real_extract(self, url): course_id, hostname, year, term, slug = self._match_valid_url(url).group('id', 'hostname', 'year', 'term', 'slug') |