Skip to content

Commit

Permalink
[ie/media.ccc.de:lists] Fix extraction (#8144)
Browse files Browse the repository at this point in the history
Closes #8138
Authored by: Rohxn16
  • Loading branch information
Rohxn16 authored Sep 18, 2023
1 parent 4099946 commit cf11b40
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion yt_dlp/extractor/ccc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit cf11b40

Please sign in to comment.