From: Remita Amine Date: Thu, 30 Jun 2016 17:27:57 +0000 (+0100) Subject: [meta] Clarify the source of uppod st decryption algorithm X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=76dad392f5bd82493777d8efc35bcfccf70fafec;p=youtube-dl [meta] Clarify the source of uppod st decryption algorithm --- diff --git a/youtube_dl/extractor/meta.py b/youtube_dl/extractor/meta.py index 42bedc48f..cdb46e163 100644 --- a/youtube_dl/extractor/meta.py +++ b/youtube_dl/extractor/meta.py @@ -42,6 +42,7 @@ class METAIE(InfoExtractor): r"st_html5\s*=\s*'#([^']+)'", webpage, 'uppod html5 st', default=None) if st_html5: + # uppod st decryption algorithm is reverse engineered from function un(s) at uppod.js json_str = '' for i in range(0, len(st_html5), 3): json_str += '�%s;' % st_html5[i:i + 3]