aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>2018-01-02 21:12:39 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@fastmail.net>2018-01-02 21:12:39 +0100
commit9650c3e91d96fc054e37485d2bfd86a6a12417e5 (patch)
tree3b7f43ec49fd91bb8237226ea2bad64173732f88 /youtube_dl
parentb5e531f31a57d2cdc9f0edd77e0cbef426e016b9 (diff)
downloadyoutube-dl-9650c3e91d96fc054e37485d2bfd86a6a12417e5.zip
youtube-dl-9650c3e91d96fc054e37485d2bfd86a6a12417e5.tar.gz
youtube-dl-9650c3e91d96fc054e37485d2bfd86a6a12417e5.tar.bz2
[rtve.es:alacarta] Fix extraction of some new URLs
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/rtve.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/rtve.py b/youtube_dl/extractor/rtve.py
index d9edf9d..fa60ffd 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