diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net> | 2018-01-02 21:12:39 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net> | 2018-01-02 21:12:39 +0100 |
commit | 9650c3e91d96fc054e37485d2bfd86a6a12417e5 (patch) | |
tree | 3b7f43ec49fd91bb8237226ea2bad64173732f88 /youtube_dl | |
parent | b5e531f31a57d2cdc9f0edd77e0cbef426e016b9 (diff) |
[rtve.es:alacarta] Fix extraction of some new URLs
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/rtve.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py index d9edf9da2..fa60ffd5e 100644 --- a/youtube_dl/extractor/rtve.py +++ b/youtube_dl/extractor/rtve.py @@ -31,6 +31,9 @@ def _decrypt_url(png): hash_index = data.index('#') alphabet_data = data[:hash_index] url_data = data[hash_index + 1:] + if url_data[0] == 'H' and url_data[3] == '%': + # remove useless HQ%% at the start + url_data = url_data[4:] alphabet = [] e = 0 |