2016-03-20 07:54:58 +00:00
|
|
|
# coding: utf-8
|
2016-08-06 18:44:15 +00:00
|
|
|
from __future__ import unicode_literals, division
|
2016-03-20 07:54:58 +00:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2016-08-23 13:55:58 +00:00
|
|
|
from ..compat import (
|
|
|
|
compat_chr,
|
|
|
|
compat_ord,
|
|
|
|
)
|
2016-03-20 08:49:44 +00:00
|
|
|
from ..utils import (
|
2016-04-24 18:03:29 +00:00
|
|
|
determine_ext,
|
2016-03-20 08:49:44 +00:00
|
|
|
ExtractorError,
|
|
|
|
)
|
2016-03-20 07:54:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OpenloadIE(InfoExtractor):
|
2016-06-09 10:13:15 +00:00
|
|
|
_VALID_URL = r'https://openload.(?:co|io)/(?:f|embed)/(?P<id>[a-zA-Z0-9-_]+)'
|
2016-03-20 07:54:58 +00:00
|
|
|
|
2016-03-20 08:49:44 +00:00
|
|
|
_TESTS = [{
|
2016-03-20 07:54:58 +00:00
|
|
|
'url': 'https://openload.co/f/kUEfGclsU9o',
|
|
|
|
'md5': 'bf1c059b004ebc7a256f89408e65c36e',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'kUEfGclsU9o',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'skyrim_no-audio_1080.mp4',
|
2016-03-20 08:49:44 +00:00
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
2016-03-20 07:54:58 +00:00
|
|
|
},
|
2016-03-20 08:49:44 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://openload.co/embed/kUEfGclsU9o/skyrim_no-audio_1080.mp4',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://openload.io/f/ZAn6oz-VZGE/',
|
|
|
|
'only_matching': True,
|
2016-06-09 10:13:15 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://openload.co/f/_-ztPaZtMhM/',
|
|
|
|
'only_matching': True,
|
2016-04-24 18:22:55 +00:00
|
|
|
}, {
|
|
|
|
# unavailable via https://openload.co/f/Sxz5sADo82g/, different layout
|
|
|
|
# for title and ext
|
|
|
|
'url': 'https://openload.co/embed/Sxz5sADo82g/',
|
|
|
|
'only_matching': True,
|
2016-03-20 08:49:44 +00:00
|
|
|
}]
|
2016-03-20 07:54:58 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
2016-08-23 13:55:58 +00:00
|
|
|
webpage = self._download_webpage('https://openload.co/embed/%s/' % video_id, video_id)
|
2016-03-20 08:49:44 +00:00
|
|
|
|
2016-08-23 13:55:58 +00:00
|
|
|
if 'File not found' in webpage or 'deleted by the owner' in webpage:
|
2016-03-20 08:49:44 +00:00
|
|
|
raise ExtractorError('File not found', expected=True)
|
|
|
|
|
2016-08-23 13:55:58 +00:00
|
|
|
# The following decryption algorithm is written by @yokrysty and
|
|
|
|
# declared to be freely used in youtube-dl
|
|
|
|
# See https://github.com/rg3/youtube-dl/issues/10408
|
|
|
|
enc_data = self._html_search_regex(
|
|
|
|
r'<span[^>]+id="hiddenurl"[^>]*>([^<]+)</span>', webpage, 'encrypted data')
|
2016-08-06 18:44:15 +00:00
|
|
|
|
2016-08-23 13:55:58 +00:00
|
|
|
video_url_chars = []
|
2016-08-06 18:44:15 +00:00
|
|
|
|
2016-08-28 12:27:08 +00:00
|
|
|
for idx, c in enumerate(enc_data):
|
2016-08-23 13:55:58 +00:00
|
|
|
j = compat_ord(c)
|
|
|
|
if j >= 33 and j <= 126:
|
|
|
|
j = ((j + 14) % 94) + 33
|
2016-08-28 12:27:08 +00:00
|
|
|
if idx == len(enc_data) - 1:
|
2016-09-11 10:36:59 +00:00
|
|
|
j += 3
|
2016-08-23 13:55:58 +00:00
|
|
|
video_url_chars += compat_chr(j)
|
2016-08-06 18:44:15 +00:00
|
|
|
|
2016-08-23 13:55:58 +00:00
|
|
|
video_url = 'https://openload.co/stream/%s?mime=true' % ''.join(video_url_chars)
|
2016-03-20 07:54:58 +00:00
|
|
|
|
2016-04-24 18:01:37 +00:00
|
|
|
title = self._og_search_title(webpage, default=None) or self._search_regex(
|
|
|
|
r'<span[^>]+class=["\']title["\'][^>]*>([^<]+)', webpage,
|
|
|
|
'title', default=None) or self._html_search_meta(
|
|
|
|
'description', webpage, 'title', fatal=True)
|
|
|
|
|
2016-03-20 07:54:58 +00:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
2016-04-24 18:01:37 +00:00
|
|
|
'title': title,
|
2016-04-24 18:26:06 +00:00
|
|
|
'thumbnail': self._og_search_thumbnail(webpage, default=None),
|
2016-03-20 07:54:58 +00:00
|
|
|
'url': video_url,
|
2016-08-06 18:44:15 +00:00
|
|
|
# Seems all videos have extensions in their titles
|
|
|
|
'ext': determine_ext(title),
|
2016-03-20 07:54:58 +00:00
|
|
|
}
|