Merge branch 'master' of ssh://git.sakamoto.pl:2137/laudom/haruhi-dl into youtube-sig-crypto-proposal

This commit is contained in:
selfisekai 2020-11-12 11:04:15 +01:00
commit 85d8ce7a3d
4 changed files with 14 additions and 7 deletions

View file

@ -1,9 +1,14 @@
version 2020.11.12
Extractor
* [tiktok] fixed extractor
* [wykop] added extractor
* [youtube] fixed crypto
version 2020.11.08
Extractors
* [youtube] age-gate fixes
* [aliexpress] Added extractor
* [polskieradio] Fixed title extraction
* [tiktok] Added extractor
version 2020.11.06
Extractors

View file

@ -1315,12 +1315,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s):
a = list(s)
a = self.mess(a, 64)
a = self.mess(a, 1)
a = self.mess(a, 25)
a = self.mess(a, 70)
a = self.mess(a, 69)
a.reverse()
a = a[2:]
a = self.mess(a, 56)
a = a[1:]
a.reverse()
a = a[3:]
a.reverse()
return "".join(a)
def _get_subtitles(self, video_id, webpage):

View file

@ -1,3 +1,3 @@
from __future__ import unicode_literals
__version__ = '2020.11.08'
__version__ = '2020.11.12'

View file

@ -107,7 +107,7 @@ setup(
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url='https://git.sakamoto.pl/laudom/haruhi-dl',
author='Ricardo Garcia',
author='Laura Liberda | Dominika Liberda',
author_email='hdl@haruhi.download',
maintainer='Dominika Liberda',
maintainer_email='ja@sdomi.pl',