2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
7 compat_urllib_parse_unquote
,
9 from ..utils
import int_or_none
12 class MangomoloBaseIE(InfoExtractor
):
13 def _get_real_id(self
, page_id
):
16 def _real_extract(self
, url
):
17 page_id
= self
._get
_real
_id
(self
._match
_id
(url
))
18 webpage
= self
._download
_webpage
(url
, page_id
)
19 hidden_inputs
= self
._hidden
_inputs
(webpage
)
20 m3u8_entry_protocol
= 'm3u8' if self
._IS
_LIVE
else 'm3u8_native'
22 format_url
= self
._html
_search
_regex
(
24 r
'file\s*:\s*"(https?://[^"]+?/playlist\.m3u8)',
25 r
'<a[^>]+href="(rtsp://[^"]+)"'
26 ], webpage
, 'format url')
27 formats
= self
._extract
_wowza
_formats
(
28 format_url
, page_id
, m3u8_entry_protocol
, ['smil'])
29 self
._sort
_formats
(formats
)
33 'title': self
._live
_title
(page_id
) if self
._IS
_LIVE
else page_id
,
34 'uploader_id': hidden_inputs
.get('userid'),
35 'duration': int_or_none(hidden_inputs
.get('duration')),
36 'is_live': self
._IS
_LIVE
,
41 class MangomoloVideoIE(MangomoloBaseIE
):
42 IE_NAME
= 'mangomolo:video'
43 _VALID_URL
= r
'https?://admin\.mangomolo\.com/analytics/index\.php/customers/embed/video\?.*?\bid=(?P<id>\d+)'
47 class MangomoloLiveIE(MangomoloBaseIE
):
48 IE_NAME
= 'mangomolo:live'
49 _VALID_URL
= r
'https?://admin\.mangomolo\.com/analytics/index\.php/customers/embed/index\?.*?\bchannelid=(?P<id>(?:[A-Za-z0-9+/=]|%2B|%2F|%3D)+)'
52 def _get_real_id(self
, page_id
):
53 return compat_b64decode(compat_urllib_parse_unquote(page_id
)).decode()