Compare commits

...

7 Commits

Author SHA1 Message Date
mp107
0f25338973
Merge b76f13229d into 4b5eec0aaa 2024-11-25 21:13:08 +05:30
Jakob Kruse
4b5eec0aaa
[ie/chaturbate] Fix support for non-public streams (#11624)
Fix bug in 720b3dc453

Closes #11623
Authored by: jkruse
2024-11-24 22:20:30 +00:00
mp107
b76f13229d [elemental_tv] Use relative imports 2024-06-17 19:47:25 +02:00
mp107
8bdf94aee3 [elemental_tv] Fix import ordering issues 2024-06-17 19:44:51 +02:00
mp107
11daaaf060 [elemental_tv] Fix further issues, add logging in error message handling 2024-06-17 19:33:09 +02:00
mp107
80c2305d45 [elemental_tv] Fix extractors order 2024-06-16 21:09:48 +02:00
mp107
513ea81155 [elemental_tv] Add extractor 2024-06-16 21:05:19 +02:00
3 changed files with 115 additions and 8 deletions

View File

@ -586,6 +586,7 @@ from .egghead import (
) )
from .eighttracks import EightTracksIE from .eighttracks import EightTracksIE
from .eitb import EitbIE from .eitb import EitbIE
from .elemental_tv import ElementalTVIE
from .elementorembed import ElementorEmbedIE from .elementorembed import ElementorEmbedIE
from .elonet import ElonetIE from .elonet import ElonetIE
from .elpais import ElPaisIE from .elpais import ElPaisIE

View File

@ -59,16 +59,15 @@ class ChaturbateIE(InfoExtractor):
'Accept': 'application/json', 'Accept': 'application/json',
}, fatal=False, impersonate=True) or {} }, fatal=False, impersonate=True) or {}
status = response.get('room_status')
if status != 'public':
if error := self._ERROR_MAP.get(status):
raise ExtractorError(error, expected=True)
self.report_warning('Falling back to webpage extraction')
return None
m3u8_url = response.get('url') m3u8_url = response.get('url')
if not m3u8_url: if not m3u8_url:
status = response.get('room_status')
if error := self._ERROR_MAP.get(status):
raise ExtractorError(error, expected=True)
if status == 'public':
self.raise_geo_restricted() self.raise_geo_restricted()
self.report_warning(f'Got status "{status}" from API; falling back to webpage extraction')
return None
return { return {
'id': video_id, 'id': video_id,

View File

@ -0,0 +1,107 @@
import json
import re
import time
from ..extractor.common import InfoExtractor
from ..networking.exceptions import HTTPError
from ..utils import ExtractorError
class ElementalTVIE(InfoExtractor):
_LOGIN_REQUIRED = True
_NETRC_MACHINE = 'elemental_tv'
_VALID_URL = r'https?://play\.elemental\.tv/channel/[0-9a-f]{24}'
_TESTS = [{
'url': 'https://play.elemental.tv/channel/573f5a14761973ec1d502507',
'info_dict': {
'id': '573f5a14761973ec1d502507',
'ext': 'mp4',
'title': 'БНТ 1 HD',
'thumbnail': 'https://play.elemental.tv/v1/tumblrs/573f5a14761973ec1d502507',
'age_limit': 0,
},
}]
access_token = ''
channel_id = ''
def _get_channel_id(self, url):
url_parts = re.search('(?<=channel/)[0-9a-f]{24}', url)
if not url_parts or not url_parts.group(0):
return None
self.channel_id = url_parts.group(0)
self.write_debug(f'Channel ID: {self.channel_id}')
if not self.channel_id:
raise ExtractorError('Channel ID not found')
def _get_stream_metadata(self):
try:
headers = {
'Authorization': 'Bearer ' + self.access_token,
}
res_api = self._download_json(
'https://play.elemental.tv/v1/channels', self.channel_id, headers=headers)
data = res_api.get('data').get(self.channel_id)
if not data:
self.write_debug('Getting metadata failed')
return {}
return {
'title': data.get('name'),
'age_limit': data.get('age'),
'thumbnail': data.get('tumblrurl'),
}
except Exception:
self.write_debug('Getting metadata failed')
return {}
def _get_stream_url(self):
# Stream URL needs current epoch time rounded to 10000s
begin = int((time.time() - 60) / 10000) * 10000
stream_url = 'https://play.elemental.tv/v1/playlists/%s/playlist.m3u8?begin=%d&access_token=%s' % (self.channel_id, begin, self.access_token)
if not stream_url or '.m3u8' not in stream_url:
raise ExtractorError('Unable to get stream URL')
return stream_url
def _perform_login(self, username, password):
post_data = {
'email': str(username),
'grant_type': 'client_credentials',
'password': str(password),
'rememberme': 'true',
}
try:
res_api = self._download_json(
'https://play.elemental.tv/v1/users/login', self.channel_id, data=json.dumps(post_data).encode()).get('data')
except ExtractorError as e:
if isinstance(e.cause, HTTPError) and e.cause.status == 400:
error_message = self._parse_json(e.cause.response.read().decode(), self.channel_id).get('error_info').get('description')
raise ExtractorError(error_message, expected=True)
if not res_api or not res_api.get('access_token'):
raise ExtractorError('Accessing login token failed')
self.access_token = res_api.get('access_token')
if res_api.get('token_type') != 'Bearer':
raise ExtractorError('Unknown login token type')
def _real_extract(self, url):
self._get_channel_id(url)
stream_url = self._get_stream_url()
formats, subtitles = self._extract_m3u8_formats_and_subtitles(stream_url, self.channel_id, ext='mp4')
return {
'id': self.channel_id,
'is_live': True,
'formats': formats,
'subtitles': subtitles,
**self._get_stream_metadata(),
}