2022-02-12 15:07:10 +01:00
|
|
|
from .common import InfoExtractor
|
2022-02-12 15:58:26 +01:00
|
|
|
from ..utils import ExtractorError, urlencode_postdata
|
2022-02-12 15:07:10 +01:00
|
|
|
|
|
|
|
|
|
|
|
class BigoIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?bigo\.tv/(?:[a-z]{2,}/)?(?P<id>[^/]+)'
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.bigo.tv/ja/221338632',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '6576287577575737440',
|
|
|
|
'title': '土よ〜💁♂️ 休憩室/REST room',
|
|
|
|
'thumbnail': r're:https?://.+',
|
|
|
|
'uploader': '✨Shin💫',
|
|
|
|
'uploader_id': '221338632',
|
|
|
|
'is_live': True,
|
|
|
|
},
|
|
|
|
'skip': 'livestream',
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.bigo.tv/th/Tarlerm1304',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://bigo.tv/115976881',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
user_id = self._match_id(url)
|
|
|
|
|
|
|
|
info_raw = self._download_json(
|
2022-07-09 11:30:34 +02:00
|
|
|
'https://ta.bigo.tv/official_website/studio/getInternalStudioInfo',
|
2022-02-12 15:58:26 +01:00
|
|
|
user_id, data=urlencode_postdata({'siteId': user_id}))
|
2022-02-12 15:07:10 +01:00
|
|
|
|
2022-03-04 18:01:04 +01:00
|
|
|
if not isinstance(info_raw, dict):
|
|
|
|
raise ExtractorError('Received invalid JSON data')
|
2022-02-12 15:07:10 +01:00
|
|
|
if info_raw.get('code'):
|
|
|
|
raise ExtractorError(
|
2022-03-04 18:01:04 +01:00
|
|
|
'Bigo says: %s (code %s)' % (info_raw.get('msg'), info_raw.get('code')), expected=True)
|
2022-02-12 15:07:10 +01:00
|
|
|
info = info_raw.get('data') or {}
|
|
|
|
|
|
|
|
if not info.get('alive'):
|
|
|
|
raise ExtractorError('This user is offline.', expected=True)
|
|
|
|
|
2022-07-09 11:30:34 +02:00
|
|
|
formats, subs = self._extract_m3u8_formats_and_subtitles(
|
|
|
|
info.get('hls_src'), user_id, 'mp4', 'm3u8')
|
|
|
|
|
2022-02-12 15:07:10 +01:00
|
|
|
return {
|
|
|
|
'id': info.get('roomId') or user_id,
|
2022-03-04 18:01:04 +01:00
|
|
|
'title': info.get('roomTopic') or info.get('nick_name') or user_id,
|
2022-07-09 11:30:34 +02:00
|
|
|
'formats': formats,
|
|
|
|
'subtitles': subs,
|
2022-02-12 15:07:10 +01:00
|
|
|
'thumbnail': info.get('snapshot'),
|
|
|
|
'uploader': info.get('nick_name'),
|
|
|
|
'uploader_id': user_id,
|
|
|
|
'is_live': True,
|
|
|
|
}
|