version 2020.11.06

merge-requests/5/head v2020.11.06
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
Extractors
*
* fixed youtube?
version 2020.11.01
Core

View File

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

View File

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