1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
6 from ..utils
import ExtractorError
9 class ChaturbateIE(InfoExtractor
):
10 _VALID_URL
= r
'https?://(?:[^/]+\.)?chaturbate\.com/(?P<id>[^/?#]+)'
12 'url': 'https://www.chaturbate.com/siswet19/',
16 'title': 're:^siswet19 [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
21 'skip_download': True,
23 'skip': 'Room is offline',
25 'url': 'https://en.chaturbate.com/siswet19/',
26 'only_matching': True,
29 _ROOM_OFFLINE
= 'Room is currently offline'
31 def _real_extract(self
, url
):
32 video_id
= self
._match
_id
(url
)
34 webpage
= self
._download
_webpage
(
35 url
, video_id
, headers
=self
.geo_verification_headers())
40 r
'(["\'])(?P
<url
>http
.+?\
.m3u8
.*?
)\
1', webpage):
41 m3u8_fast_url, m3u8_no_fast_url = m.group('url
'), m.group(
42 'url
').replace('_fast
', '')
43 for m3u8_url in (m3u8_fast_url, m3u8_no_fast_url):
44 if m3u8_url not in m3u8_urls:
45 m3u8_urls.append(m3u8_url)
48 error = self._search_regex(
49 [r'<span
[^
>]+class=(["\'])desc_span\1[^>]*>(?P<error>[^<]+)</span>',
50 r'<div[^>]+id=(["\'])defchat\
1[^
>]*>\s
*<p
><strong
>(?P
<error
>[^
<]+)<'],
51 webpage, 'error
', group='error
', default=None)
53 if any(p in webpage for p in (
54 self._ROOM_OFFLINE, 'offline_tipping
', 'tip_offline
')):
55 error = self._ROOM_OFFLINE
57 raise ExtractorError(error, expected=True)
58 raise ExtractorError('Unable to find stream URL
')
61 for m3u8_url in m3u8_urls:
62 m3u8_id = 'fast
' if '_fast
' in m3u8_url else 'slow
'
63 formats.extend(self._extract_m3u8_formats(
64 m3u8_url, video_id, ext='mp4
',
65 # ffmpeg skips segments for fast m3u8
66 preference=-10 if m3u8_id == 'fast
' else None,
67 m3u8_id=m3u8_id, fatal=False, live=True))
68 self._sort_formats(formats)
72 'title
': self._live_title(video_id),
73 'thumbnail
': 'https
://roomimg
.stream
.highwebmedia
.com
/ri
/%s.jpg
' % video_id,
74 'age_limit
': self._rta_search(webpage),