mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 22:46:34 +00:00
Fix formatting
This commit is contained in:
parent
4ae18a5a93
commit
4790abc01d
1 changed files with 4 additions and 0 deletions
|
@ -29,6 +29,9 @@ class KickIE(InfoExtractor):
|
|||
data = self._download_json('https://kick.com/api/v1/video/%s' % id, id, headers=headers)
|
||||
|
||||
video_url = data['source']
|
||||
formats = self._extract_m3u8_formats(
|
||||
data['source'], id, 'mp4')
|
||||
self._sort_formats(formats)
|
||||
title = data['livestream']['session_title']
|
||||
uploader = data['livestream']['channel']['user']['username']
|
||||
thumbnail = data['livestream']['thumbnail']
|
||||
|
@ -39,4 +42,5 @@ class KickIE(InfoExtractor):
|
|||
'title': title,
|
||||
'uploader': uploader,
|
||||
'thumbnail': thumbnail,
|
||||
'formats': formats,
|
||||
}
|
Loading…
Reference in a new issue