diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-12-06 16:40:35 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-12-06 16:41:02 +0800 |
commit | 8364b6b0b17f4ea20db9bbd160740801951170ca (patch) | |
tree | 1ef19bc546203dd79c7c872788fc35f613838ac5 /youtube_dl/extractor/iqiyi.py | |
parent | 7ac40e552181ad43b3e2ad9919a643414d8a8434 (diff) |
[iqiyi] Update key
Closes #7772
Diffstat (limited to 'youtube_dl/extractor/iqiyi.py')
-rw-r--r-- | youtube_dl/extractor/iqiyi.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/iqiyi.py b/youtube_dl/extractor/iqiyi.py index 2df1da3f0..f96e12e69 100644 --- a/youtube_dl/extractor/iqiyi.py +++ b/youtube_dl/extractor/iqiyi.py @@ -205,9 +205,8 @@ class IqiyiIE(InfoExtractor): def get_enc_key(self, swf_url, video_id): # TODO: automatic key extraction - # last update at 2015-10-22 for Zombie::bite - # '7223c67061dbea1259d0ceb44f44b6d62288f4f80c972170de5201d2321060270e05'[2:66][0::2] - enc_key = '2c76de15dcb44bd28ff0927d50d31620' + # last update at 2015-12-06 for Zombie::bite + enc_key = '3719f6a1da83ee0aee3488d8802d7696'[::-1] return enc_key def _real_extract(self, url): |