version 2020.11.12

merge-requests/5/head 2020.11.12
Dominika 2020-11-12 02:53:28 +01:00
parent 5562404cc3
commit 8c506dae76
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

@ -1272,12 +1272,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s):
a=[char for char in 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',