version 2021.02.23

This commit is contained in:
Dominika 2021-02-23 15:06:34 +01:00
parent 84c08079bd
commit eb0891a824
3 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,8 @@
version 2021.02.23
Extractor
* [youtube] new crypto
* [youtube] fixed automatic crypto extraction
version 2021.02.22 version 2021.02.22
Extractor Extractor
* [peertube] reduced request amount * [peertube] reduced request amount

View file

@ -1077,10 +1077,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s): def _decrypt_signature_protected(self, s):
a = list(s) a = list(s)
a = self.mess(a, 17)
a.reverse() a.reverse()
a = a[3:] a = a[3:]
a = self.mess(a, 37) a = self.mess(a, 12)
a = a[3:] a = a[1:]
a.reverse()
a = self.mess(a, 47)
a.reverse()
return "".join(a) return "".join(a)
def _get_subtitles(self, video_id, webpage): def _get_subtitles(self, video_id, webpage):

View file

@ -1,6 +1,6 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '2021.02.22' __version__ = '2021.02.23'
if __name__ == '__main__': if __name__ == '__main__':
print(__version__) print(__version__)