[beeg] Switch to api v6 (Closes #9036)

This commit is contained in:
Sergey M․ 2016-03-31 20:42:41 +06:00
parent c9c39c22c5
commit 5299bc3f91
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ class BeegIE(InfoExtractor):
video_id = self._match_id(url) video_id = self._match_id(url)
video = self._download_json( video = self._download_json(
'https://api.beeg.com/api/v5/video/%s' % video_id, video_id) 'https://api.beeg.com/api/v6/1738/video/%s' % video_id, video_id)
def split(o, e): def split(o, e):
def cut(s, x): def cut(s, x):
@ -50,8 +50,8 @@ class BeegIE(InfoExtractor):
return n return n
def decrypt_key(key): def decrypt_key(key):
# Reverse engineered from http://static.beeg.com/cpl/1105.js # Reverse engineered from http://static.beeg.com/cpl/1738.js
a = '5ShMcIQlssOd7zChAIOlmeTZDaUxULbJRnywYaiB' a = 'GUuyodcfS8FW8gQp4OKLMsZBcX0T7B'
e = compat_urllib_parse_unquote(key) e = compat_urllib_parse_unquote(key)
o = ''.join([ o = ''.join([
compat_chr(compat_ord(e[n]) - compat_ord(a[n % len(a)]) % 21) compat_chr(compat_ord(e[n]) - compat_ord(a[n % len(a)]) % 21)