[npo] Clarify token decryption algorithm source

This commit is contained in:
Sergey M․ 2015-07-02 20:20:09 +06:00
parent 8d06a62485
commit f5ca97e393
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ class NPOBaseIE(InfoExtractor):
video_id, note='Downloading token')
token = self._search_regex(
r'npoplayer\.token = "(.+?)"', token_page, 'token')
# Decryption algorithm extracted from http://npoplayer.omroep.nl/csjs/npoplayer-min.js
token_l = list(token)
first = second = None
for i in range(5, len(token_l) - 4):