Browse Source

[openload] Fix extraction (closes #12002)

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
90fad0e74c
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 7 deletions
  1. +4
    -7
      youtube_dl/extractor/openload.py

+ 4
- 7
youtube_dl/extractor/openload.py View File

@ -76,19 +76,16 @@ class OpenloadIE(InfoExtractor):
webpage, 'openload ID')
first_two_chars = int(float(ol_id[0:][:2]))
urlcode = {}
urlcode = []
num = 2
while num < len(ol_id):
key = int(float(ol_id[num + 3:][:2]))
urlcode[key] = compat_chr(int(float(ol_id[num:][:3])) - first_two_chars)
urlcode.append((key, compat_chr(int(float(ol_id[num:][:3])) - first_two_chars)))
num += 5
sorted(urlcode, key=lambda key: urlcode[key])
urllink = ''.join(['%s' % (value) for (key, value) in urlcode.items()])
video_url = 'https://openload.co/stream/' + urllink
video_url = 'https://openload.co/stream/' + ''.join(
[value for _, value in sorted(urlcode, key=lambda x: x[0])])
title = self._og_search_title(webpage, default=None) or self._search_regex(
r'<span[^>]+class=["\']title["\'][^>]*>([^<]+)', webpage,


Loading…
Cancel
Save