mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-01-29 01:27:52 +00:00
e7cc02b14d
Authored by: NecroRomnt
70 lines
2.6 KiB
Python
70 lines
2.6 KiB
Python
from .common import InfoExtractor
|
|
from ..utils import (
|
|
int_or_none,
|
|
str_or_none,
|
|
traverse_obj,
|
|
url_or_none,
|
|
)
|
|
|
|
|
|
class GoodGameIE(InfoExtractor):
|
|
IE_NAME = 'goodgame:stream'
|
|
_VALID_URL = r'https?://goodgame\.ru/(?!channel/)(?P<id>[\w.*-]+)'
|
|
_TESTS = [{
|
|
'url': 'https://goodgame.ru/TGW#autoplay',
|
|
'info_dict': {
|
|
'id': '7998',
|
|
'ext': 'mp4',
|
|
'channel_id': '7998',
|
|
'title': r're:шоуматч Happy \(NE\) vs Fortitude \(UD\), потом ладдер и дс \d{4}-\d{2}-\d{2} \d{2}:\d{2}$',
|
|
'channel_url': 'https://goodgame.ru/TGW',
|
|
'thumbnail': 'https://hls.goodgame.ru/previews/7998_240.jpg',
|
|
'uploader': 'TGW',
|
|
'channel': 'JosephStalin',
|
|
'live_status': 'is_live',
|
|
'age_limit': 18,
|
|
'channel_follower_count': int,
|
|
'uploader_id': '2899',
|
|
'concurrent_view_count': int,
|
|
},
|
|
'params': {'skip_download': 'm3u8'},
|
|
}, {
|
|
'url': 'https://goodgame.ru/Mr.Gray',
|
|
'only_matching': True,
|
|
}, {
|
|
'url': 'https://goodgame.ru/HeDoPa3yMeHue*',
|
|
'only_matching': True,
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
channel_name = self._match_id(url)
|
|
response = self._download_json(f'https://goodgame.ru/api/4/users/{channel_name}/stream', channel_name)
|
|
player_id = response['streamkey']
|
|
|
|
formats, subtitles = [], {}
|
|
if response.get('status'):
|
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(
|
|
f'https://hls.goodgame.ru/manifest/{player_id}_master.m3u8',
|
|
channel_name, 'mp4', live=True)
|
|
else:
|
|
self.raise_no_formats('User is offline', expected=True, video_id=channel_name)
|
|
|
|
return {
|
|
'id': player_id,
|
|
'formats': formats,
|
|
'subtitles': subtitles,
|
|
'is_live': bool(formats),
|
|
**traverse_obj(response, {
|
|
'title': ('title', {str}),
|
|
'channel': ('channelkey', {str}),
|
|
'channel_id': ('id', {str_or_none}),
|
|
'channel_url': ('link', {url_or_none}),
|
|
'uploader': ('streamer', 'username', {str}),
|
|
'uploader_id': ('streamer', 'id', {str_or_none}),
|
|
'thumbnail': ('preview', {url_or_none}, {self._proto_relative_url}),
|
|
'concurrent_view_count': ('viewers', {int_or_none}),
|
|
'channel_follower_count': ('followers', {int_or_none}),
|
|
'age_limit': ('adult', {bool}, {lambda x: 18 if x else None}),
|
|
}),
|
|
}
|