]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/streamango.py
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..compat
import compat_chr
16 class StreamangoIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://(?:www\.)?streamango\.com/(?:f|embed)/(?P<id>[^/?#&]+)'
19 'url': 'https://streamango.com/f/clapasobsptpkdfe/20170315_150006_mp4',
20 'md5': 'e992787515a182f55e38fc97588d802a',
22 'id': 'clapasobsptpkdfe',
24 'title': '20170315_150006.mp4',
28 'url': 'https://streamango.com/embed/foqebrpftarclpob/asdf_asd_2_mp4',
30 'id': 'foqebrpftarclpob',
32 'title': 'foqebrpftarclpob',
35 'skip_download': True,
39 'url': 'https://streamango.com/embed/clapasobsptpkdfe/20170315_150006_mp4',
40 'only_matching': True,
43 def _real_extract(self
, url
):
44 def decrypt_src(encoded
, val
):
45 ALPHABET
= '=/+9876543210zyxwvutsrqponmlkjihgfedcbaZYXWVUTSRQPONMLKJIHGFEDCBA'
46 encoded
= re
.sub(r
'[^A-Za-z0-9+/=]', '', encoded
)
50 str_len
= len(encoded
)
53 sm
[j
% 4] = ALPHABET
.index(encoded
[i
])
55 char_code
= ((sm
[0] << 0x2) |
(sm
[1] >> 0x4)) ^ val
56 decoded
+= compat_chr(char_code
)
58 char_code
= ((sm
[1] & 0xf) << 0x4) |
(sm
[2] >> 0x2)
59 decoded
+= compat_chr(char_code
)
61 char_code
= ((sm
[2] & 0x3) << 0x6) | sm
[3]
62 decoded
+= compat_chr(char_code
)
65 video_id
= self
._match
_id
(url
)
67 webpage
= self
._download
_webpage
(url
, video_id
)
69 title
= self
._og
_search
_title
(webpage
, default
=video_id
)
72 for format_
in re
.findall(r
'({[^}]*\bsrc\s*:\s*[^}]*})', webpage
):
73 mobj
= re
.search(r
'(src\s*:\s*[^(]+\(([^)]*)\)[\s,]*)', format_
)
77 format_
= format_
.replace(mobj
.group(0), '')
79 video
= self
._parse
_json
(
80 format_
, video_id
, transform_source
=js_to_json
,
84 r
'([\'"])(?P<src>(?:(?!\1).)+)\1\s*,\s*(?P<val>\d+)',
89 src = decrypt_src(mobj.group('src'), int_or_none(mobj.group('val')))
93 ext = determine_ext(src, default_ext=None)
94 if video.get('type') == 'application/dash+xml' or ext == 'mpd':
95 formats.extend(self._extract_mpd_formats(
96 src, video_id, mpd_id='dash', fatal=False))
101 'width': int_or_none(video.get('width')),
102 'height': int_or_none(video.get('height')),
103 'tbr': int_or_none(video.get('bitrate')),
107 error = self._search_regex(
108 r'<p[^>]+\bclass=["\']lead
[^
>]+>(.+?
)</p
>', webpage,
109 'error
', default=None)
110 if not error and '>Sorry
' in webpage:
111 error = 'Video
%s is not available
' % video_id
113 raise ExtractorError(error, expected=True)
115 self._sort_formats(formats)