1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 18:09:28 +00:00
youtube-dl/youtube_dl/extractor/kick.py

61 lines
2.2 KiB
Python
Raw Normal View History

2023-02-17 15:56:39 +00:00
# coding: utf-8
from __future__ import unicode_literals
from .common import InfoExtractor
2023-02-21 11:57:02 +00:00
from ..utils import (
float_or_none,
int_or_none,
parse_iso8601,
strip_or_none,
traverse_obj,
url_or_none,
)
2023-02-17 15:56:39 +00:00
class KickIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?kick\.com/video/(?P<id>[0-9a-zA-Z-]+)'
2023-02-21 11:57:02 +00:00
_TESTS = [{
2023-02-17 15:56:39 +00:00
'url': 'https://kick.com/video/82a3c11d-7a17-4747-aecb-2e61413eb11f',
'md5': 'f052bc1046cd9ca6751925dd12420010',
'info_dict': {
'id': '82a3c11d-7a17-4747-aecb-2e61413eb11f',
2023-02-20 19:25:02 +00:00
'ext': 'mp4',
2023-02-17 15:56:39 +00:00
'title': 'Weekly Stake Stream',
'uploader': 'Eddie',
'thumbnail': r're:^https?://.*\.jpg.*$',
2023-02-20 19:25:02 +00:00
'timestamp': 1676890314,
'upload_date': '20230220',
2023-02-17 15:56:39 +00:00
}
2023-02-21 11:57:02 +00:00
}]
2023-02-17 15:56:39 +00:00
def _real_extract(self, url):
id = self._match_id(url)
headers = {
'Accept': 'application/json',
}
data = self._download_json('https://kick.com/api/v1/video/%s' % id, id, headers=headers)
2023-02-18 13:59:37 +00:00
formats = self._extract_m3u8_formats(
data['source'], id, 'mp4')
self._sort_formats(formats)
2023-02-20 19:25:02 +00:00
livestream = data['livestream']
strip_lambda = lambda x: strip_or_none(x) or None
2023-02-17 15:56:39 +00:00
return {
'id': id,
2023-02-18 13:59:37 +00:00
'formats': formats,
2023-02-20 19:25:02 +00:00
'title': livestream.get('session_title'),
'uploader': traverse_obj(livestream, ('channel', 'user', 'username'), expected_type=strip_lambda),
'thumbnail': url_or_none(livestream.get('thumbnail')),
2023-02-21 11:57:02 +00:00
'duration': float_or_none(livestream.get('duration'), scale=1000),
2023-02-20 19:25:02 +00:00
'timestamp': traverse_obj(data, 'updated_at', 'created_at', expected_type=parse_iso8601),
'release_timestamp': parse_iso8601(data.get('created_at')),
'view_count': int_or_none(data.get('views')),
2023-02-21 11:57:02 +00:00
'is_live': livestream.get('is_live'),
'channel': traverse_obj(livestream, ('channel', 'slug'), expected_type=strip_lambda),
2023-02-20 19:25:02 +00:00
'categories': traverse_obj(data, ('categories', Ellipsis, 'name'), expected_type=strip_lambda) or None,
'tags': traverse_obj(data, ('categories', Ellipsis, 'tags', Ellipsis), expected_type=strip_lambda) or None,
2023-02-18 14:02:45 +00:00
}