version 2020.11.06

This commit is contained in:
Dominika 2020-11-06 23:30:05 +01:00
parent 7383557d63
commit 84ea897ae8
3 changed files with 12 additions and 7 deletions

View file

@ -1,6 +1,11 @@
version 2020.11.06
Extractors
* youtube fixes
* Added onnetwork extractor
version 2020.11.01.01 version 2020.11.01.01
Extractors Extractors
* * fixed youtube?
version 2020.11.01 version 2020.11.01
Core Core

View file

@ -1272,12 +1272,12 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s): def _decrypt_signature_protected(self, s):
a=[char for char in s] a=[char for char in s]
a=a[1:] a=self.mess(a,64)
a=self.mess(a,50) a=self.mess(a,1)
a.reverse() a=self.mess(a,25)
a=a[3:] a=self.mess(a,70)
a=self.mess(a,34)
a.reverse() a.reverse()
a=a[2:]
return "".join(a) return "".join(a)
def _get_subtitles(self, video_id, webpage): def _get_subtitles(self, video_id, webpage):

View file

@ -1,3 +1,3 @@
from __future__ import unicode_literals from __future__ import unicode_literals
__version__ = '2020.11.04' __version__ = '2020.11.06'