mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[ellentv:clips] Fix extraction
This commit is contained in:
parent
870744ce8f
commit
66be4b89d7
1 changed files with 5 additions and 1 deletions
|
@ -78,4 +78,8 @@ def _extract_playlist(self, webpage):
|
|||
raise ExtractorError('Failed to download JSON', cause=ve)
|
||||
|
||||
def _extract_entries(self, playlist):
|
||||
return [self.url_result(item['url'], 'EllenTV') for item in playlist]
|
||||
return [
|
||||
self.url_result(
|
||||
'kaltura:%s:%s' % (item['kaltura_partner_id'], item['kaltura_entry_id']),
|
||||
'Kaltura')
|
||||
for item in playlist]
|
||||
|
|
Loading…
Reference in a new issue