Browse Source

[rtve.es:alacarta] Fix extraction of some new URLs

master-ytdl-org
Jaime Marquínez Ferrándiz 7 years ago
parent
commit
9650c3e91d
2 changed files with 9 additions and 0 deletions
  1. +6
    -0
      ChangeLog
  2. +3
    -0
      youtube_dl/extractor/rtve.py

+ 6
- 0
ChangeLog View File

@ -1,3 +1,9 @@
version <unreleased>
Extractors
* [rtve.es:alacarta] Fix extraction of some new URLs
version 2017.12.31
Core


+ 3
- 0
youtube_dl/extractor/rtve.py View File

@ -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


Loading…
Cancel
Save