version 2021.01.03

radioplus v2021.01.03
Dominika Liberda 2021-01-03 23:30:31 +01:00
parent 5049bf7bea
commit 8f86520b7a
3 changed files with 20 additions and 3 deletions

View File

@ -1,3 +1,14 @@
version 2021.01.03
Extractor
* [youtube] new crypto
* [youtube] now extracts alt-title with english title if it differs
* [tokfm] Added extractor
* [ipla] Added extractor (thankies, @ptrcnull!)
* [tvnplayer] Added extractor (again, thanks Pati!)
* [funkwhale] Added extractors
* [tvp] fixed tvpabc
* [onet] removed deprecated extractors
version 2020.12.11
Extractor
* [youtube] fixed playlist extract

View File

@ -1068,9 +1068,15 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s):
a = list(s)
a = a[2:]
a = self.mess(a, 62)
a.reverse()
a = self.mess(a, 13)
a = a[3:]
a.reverse()
a = self.mess(a, 69)
a = a[2:]
a = self.mess(a, 58)
a.reverse()
a = a[1:]
return "".join(a)
def _get_subtitles(self, video_id, webpage):

View File

@ -1,3 +1,3 @@
from __future__ import unicode_literals
__version__ = '2020.12.11'
__version__ = '2021.01.03'