2015-10-11 14:35:22 +00:00
|
|
|
from __future__ import unicode_literals
|
2015-10-06 21:28:58 +00:00
|
|
|
|
2017-01-21 13:00:38 +00:00
|
|
|
import re
|
|
|
|
|
2015-10-06 21:28:58 +00:00
|
|
|
from .common import InfoExtractor
|
2015-10-11 14:35:22 +00:00
|
|
|
from ..utils import ExtractorError
|
2015-10-06 21:28:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ChaturbateIE(InfoExtractor):
|
2019-10-04 12:22:01 +00:00
|
|
|
_VALID_URL = r'https?://(?:[^/]+\.)?chaturbate\.com/(?:fullvideo/?\?.*?\bb=)?(?P<id>[^/?&#]+)'
|
2015-10-11 14:35:22 +00:00
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.chaturbate.com/siswet19/',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'siswet19',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 're:^siswet19 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
|
|
|
|
'age_limit': 18,
|
|
|
|
'is_live': True,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': True,
|
2016-08-08 05:06:02 +00:00
|
|
|
},
|
|
|
|
'skip': 'Room is offline',
|
2019-10-04 12:22:01 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://chaturbate.com/fullvideo/?b=caylin',
|
|
|
|
'only_matching': True,
|
2015-10-11 14:35:22 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://en.chaturbate.com/siswet19/',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2015-10-06 21:28:58 +00:00
|
|
|
|
2015-12-24 14:09:48 +00:00
|
|
|
_ROOM_OFFLINE = 'Room is currently offline'
|
|
|
|
|
2015-10-06 21:28:58 +00:00
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
2015-10-11 14:35:22 +00:00
|
|
|
|
2018-06-02 21:30:33 +00:00
|
|
|
webpage = self._download_webpage(
|
2019-10-04 12:22:01 +00:00
|
|
|
'https://chaturbate.com/%s/' % video_id, video_id,
|
|
|
|
headers=self.geo_verification_headers())
|
2015-10-06 21:28:58 +00:00
|
|
|
|
2017-04-08 18:39:40 +00:00
|
|
|
m3u8_urls = []
|
2015-10-11 14:35:22 +00:00
|
|
|
|
2017-04-08 18:39:40 +00:00
|
|
|
for m in re.finditer(
|
|
|
|
r'(["\'])(?P<url>http.+?\.m3u8.*?)\1', webpage):
|
|
|
|
m3u8_fast_url, m3u8_no_fast_url = m.group('url'), m.group(
|
|
|
|
'url').replace('_fast', '')
|
|
|
|
for m3u8_url in (m3u8_fast_url, m3u8_no_fast_url):
|
|
|
|
if m3u8_url not in m3u8_urls:
|
|
|
|
m3u8_urls.append(m3u8_url)
|
|
|
|
|
|
|
|
if not m3u8_urls:
|
2015-10-11 14:35:22 +00:00
|
|
|
error = self._search_regex(
|
2015-12-24 14:09:48 +00:00
|
|
|
[r'<span[^>]+class=(["\'])desc_span\1[^>]*>(?P<error>[^<]+)</span>',
|
|
|
|
r'<div[^>]+id=(["\'])defchat\1[^>]*>\s*<p><strong>(?P<error>[^<]+)<'],
|
|
|
|
webpage, 'error', group='error', default=None)
|
|
|
|
if not error:
|
2017-01-21 13:00:38 +00:00
|
|
|
if any(p in webpage for p in (
|
2015-12-24 14:09:48 +00:00
|
|
|
self._ROOM_OFFLINE, 'offline_tipping', 'tip_offline')):
|
|
|
|
error = self._ROOM_OFFLINE
|
|
|
|
if error:
|
|
|
|
raise ExtractorError(error, expected=True)
|
|
|
|
raise ExtractorError('Unable to find stream URL')
|
2015-10-06 21:28:58 +00:00
|
|
|
|
2017-01-21 13:00:38 +00:00
|
|
|
formats = []
|
2017-04-08 18:39:40 +00:00
|
|
|
for m3u8_url in m3u8_urls:
|
|
|
|
m3u8_id = 'fast' if '_fast' in m3u8_url else 'slow'
|
2017-01-21 20:00:10 +00:00
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
m3u8_url, video_id, ext='mp4',
|
|
|
|
# ffmpeg skips segments for fast m3u8
|
|
|
|
preference=-10 if m3u8_id == 'fast' else None,
|
|
|
|
m3u8_id=m3u8_id, fatal=False, live=True))
|
2016-03-27 01:03:08 +00:00
|
|
|
self._sort_formats(formats)
|
2015-10-06 21:28:58 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': self._live_title(video_id),
|
2017-01-21 13:00:38 +00:00
|
|
|
'thumbnail': 'https://roomimg.stream.highwebmedia.com/ri/%s.jpg' % video_id,
|
2015-10-11 14:35:22 +00:00
|
|
|
'age_limit': self._rta_search(webpage),
|
2015-10-06 21:28:58 +00:00
|
|
|
'is_live': True,
|
|
|
|
'formats': formats,
|
|
|
|
}
|