|
@ -5,6 +5,7 @@ import re |
|
|
|
|
|
|
|
|
from .common import InfoExtractor |
|
|
from .common import InfoExtractor |
|
|
from ..utils import ( |
|
|
from ..utils import ( |
|
|
|
|
|
ExtractorError, |
|
|
sanitized_Request, |
|
|
sanitized_Request, |
|
|
urlencode_postdata, |
|
|
urlencode_postdata, |
|
|
) |
|
|
) |
|
@ -14,7 +15,7 @@ class StreamcloudIE(InfoExtractor): |
|
|
IE_NAME = 'streamcloud.eu' |
|
|
IE_NAME = 'streamcloud.eu' |
|
|
_VALID_URL = r'https?://streamcloud\.eu/(?P<id>[a-zA-Z0-9_-]+)(?:/(?P<fname>[^#?]*)\.html)?' |
|
|
_VALID_URL = r'https?://streamcloud\.eu/(?P<id>[a-zA-Z0-9_-]+)(?:/(?P<fname>[^#?]*)\.html)?' |
|
|
|
|
|
|
|
|
_TEST = { |
|
|
|
|
|
|
|
|
_TESTS = [{ |
|
|
'url': 'http://streamcloud.eu/skp9j99s4bpz/youtube-dl_test_video_____________-BaW_jenozKc.mp4.html', |
|
|
'url': 'http://streamcloud.eu/skp9j99s4bpz/youtube-dl_test_video_____________-BaW_jenozKc.mp4.html', |
|
|
'md5': '6bea4c7fa5daaacc2a946b7146286686', |
|
|
'md5': '6bea4c7fa5daaacc2a946b7146286686', |
|
|
'info_dict': { |
|
|
'info_dict': { |
|
@ -23,7 +24,10 @@ class StreamcloudIE(InfoExtractor): |
|
|
'title': 'youtube-dl test video \'/\\ ä ↭', |
|
|
'title': 'youtube-dl test video \'/\\ ä ↭', |
|
|
}, |
|
|
}, |
|
|
'skip': 'Only available from the EU' |
|
|
'skip': 'Only available from the EU' |
|
|
} |
|
|
|
|
|
|
|
|
}, { |
|
|
|
|
|
'url': 'http://streamcloud.eu/ua8cmfh1nbe6/NSHIP-148--KUC-NG--H264-.mp4.html', |
|
|
|
|
|
'only_matching': True, |
|
|
|
|
|
}] |
|
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
def _real_extract(self, url): |
|
|
video_id = self._match_id(url) |
|
|
video_id = self._match_id(url) |
|
@ -31,6 +35,10 @@ class StreamcloudIE(InfoExtractor): |
|
|
|
|
|
|
|
|
orig_webpage = self._download_webpage(url, video_id) |
|
|
orig_webpage = self._download_webpage(url, video_id) |
|
|
|
|
|
|
|
|
|
|
|
if '>File Not Found<' in orig_webpage: |
|
|
|
|
|
raise ExtractorError( |
|
|
|
|
|
'Video %s does not exist' % video_id, expected=True) |
|
|
|
|
|
|
|
|
fields = re.findall(r'''(?x)<input\s+ |
|
|
fields = re.findall(r'''(?x)<input\s+ |
|
|
type="(?:hidden|submit)"\s+ |
|
|
type="(?:hidden|submit)"\s+ |
|
|
name="([^"]+)"\s+ |
|
|
name="([^"]+)"\s+ |
|
|