* version 2021.04.01

radioplus v2021.04.01
Dominika Liberda 2021-04-01 20:56:34 +02:00
parent 8a0ec69c60
commit a71cc68530
3 changed files with 16 additions and 5 deletions

View File

@ -1,3 +1,13 @@
version 2021.04.01
Core
- Removed Herobrine
Extractor
* [youtube] fixed GDPR consent workaround
* [instagram] improve title extraction and extract duration
* [francetvinfo] improve video ID extraction
* [vlive] merge all updates from YTDL
version 2021.03.30
Core
* `--ie-key` commandline option for selecting specific extractor

View File

@ -1072,12 +1072,13 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s):
a = list(s)
a = self.mess(a, 51)
a.reverse()
a = a[3:]
a = self.mess(a, 11)
a = self.mess(a, 63)
a = self.mess(a, 20)
a = a[1:]
a.reverse()
a = a[2:]
a = self.mess(a, 44)
a = a[1:]
a.reverse()
return "".join(a)

View File

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