diff options
author | Rohan Dey <142105763+Rohxn16@users.noreply.github.com> | 2023-09-18 23:39:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 23:39:20 +0000 |
commit | cf11b40ac40e3d23a6352753296f3a732886efb9 (patch) | |
tree | 37d7061fb7f1882ce0bdf1841e2f4c4da122fc77 | |
parent | 40999467f72db074a3f13057da9bf82a857530fe (diff) |
[ie/media.ccc.de:lists] Fix extraction (#8144)
Closes #8138
Authored by: Rohxn16
-rw-r--r-- | yt_dlp/extractor/ccc.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/yt_dlp/extractor/ccc.py b/yt_dlp/extractor/ccc.py index 22e3a22ec..ca6b82c98 100644 --- a/yt_dlp/extractor/ccc.py +++ b/yt_dlp/extractor/ccc.py @@ -90,10 +90,17 @@ class CCCPlaylistIE(InfoExtractor): 'id': '30c3', }, 'playlist_count': 135, + }, { + 'url': 'https://media.ccc.de/c/DS2023', + 'info_dict': { + 'title': 'Datenspuren 2023', + 'id': 'DS2023', + }, + 'playlist_count': 37 }] def _real_extract(self, url): - playlist_id = self._match_id(url).lower() + playlist_id = self._match_id(url) conf = self._download_json( 'https://media.ccc.de/public/conferences/' + playlist_id, |