version 2021.01.16

radioplus v2021.01.16
Dominika 2021-01-16 02:38:11 +01:00
parent 097c7bd4ba
commit 2c354d15a0
3 changed files with 27 additions and 8 deletions

View File

@ -1,3 +1,26 @@
version 2021.01.16
Extractor
* [youtube] new crypto
* [tvp] Laura probably fixed something, I can't keep up
* [linkedin] post extractor
* [weibo] dash formats support
* [vimeo:review] fix videos with video password
* [gtv.org] extractor that **may** _sometimes_ work
* [youtube] oh cool, playlist and channels got fixed
* [youtube] youtube-music extractor
* [lbry] new extractor
* [embetty] new extractor, detection in genericie
* [heise] extracting embetty embeds
* [theguardian] new extractor(s)
* [tvp:series] API refactor (I KNEW IT)
* [tubafm] basic support
* [rmf] added extractors
* [cda] refactor to mobile JSON API
Core:
* _json_ld now handles multiple thumbails
* normalization of searching for embeds in genericie
version 2021.01.03
Extractor
* [youtube] new crypto

View File

@ -1068,15 +1068,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _decrypt_signature_protected(self, s):
a = list(s)
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:]
a = a[2:]
a = self.mess(a, 1)
a = self.mess(a, 8)
return "".join(a)
def _get_subtitles(self, video_id, webpage):

View File

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