mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 07:22:06 -05:00
[ie/media.ccc.de:lists] Fix extraction (#8144)
Closes #8138 Authored by: Rohxn16
This commit is contained in:
parent
40999467f7
commit
cf11b40ac4
@ -90,10 +90,17 @@ class CCCPlaylistIE(InfoExtractor):
|
|||||||
'id': '30c3',
|
'id': '30c3',
|
||||||
},
|
},
|
||||||
'playlist_count': 135,
|
'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):
|
def _real_extract(self, url):
|
||||||
playlist_id = self._match_id(url).lower()
|
playlist_id = self._match_id(url)
|
||||||
|
|
||||||
conf = self._download_json(
|
conf = self._download_json(
|
||||||
'https://media.ccc.de/public/conferences/' + playlist_id,
|
'https://media.ccc.de/public/conferences/' + playlist_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user