2015-11-11 11:58:39 -05:00
|
|
|
# coding: utf-8
|
2014-06-07 22:09:45 -04:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-12-13 06:24:42 -05:00
|
|
|
from ..utils import (
|
2016-06-12 14:11:04 -04:00
|
|
|
decode_packed_codes,
|
2014-12-13 06:24:42 -05:00
|
|
|
ExtractorError,
|
2014-11-26 09:02:40 -05:00
|
|
|
int_or_none,
|
2016-06-12 14:11:04 -04:00
|
|
|
NO_DEFAULT,
|
2015-11-21 11:18:17 -05:00
|
|
|
sanitized_Request,
|
2016-03-25 16:19:24 -04:00
|
|
|
urlencode_postdata,
|
2014-06-17 09:18:46 -04:00
|
|
|
)
|
|
|
|
|
2014-06-07 22:09:45 -04:00
|
|
|
|
2015-11-11 11:58:39 -05:00
|
|
|
class XFileShareIE(InfoExtractor):
|
2016-05-03 05:35:32 -04:00
|
|
|
_SITES = (
|
|
|
|
('daclips.in', 'DaClips'),
|
|
|
|
('filehoot.com', 'FileHoot'),
|
|
|
|
('gorillavid.in', 'GorillaVid'),
|
|
|
|
('movpod.in', 'MovPod'),
|
|
|
|
('powerwatch.pw', 'PowerWatch'),
|
|
|
|
('rapidvideo.ws', 'Rapidvideo.ws'),
|
|
|
|
('thevideobee.to', 'TheVideoBee'),
|
|
|
|
('vidto.me', 'Vidto'),
|
2016-05-03 06:58:11 -04:00
|
|
|
('streamin.to', 'Streamin.To'),
|
2016-06-12 14:11:04 -04:00
|
|
|
('xvidstage.com', 'XVIDSTAGE'),
|
2016-05-03 05:35:32 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
IE_DESC = 'XFileShare based sites: %s' % ', '.join(list(zip(*_SITES))[1])
|
|
|
|
_VALID_URL = (r'https?://(?P<host>(?:www\.)?(?:%s))/(?:embed-)?(?P<id>[0-9a-zA-Z]+)'
|
|
|
|
% '|'.join(re.escape(site) for site in list(zip(*_SITES))[0]))
|
2014-06-17 09:18:46 -04:00
|
|
|
|
2016-06-12 14:19:54 -04:00
|
|
|
_FILE_NOT_FOUND_REGEXES = (
|
|
|
|
r'>(?:404 - )?File Not Found<',
|
|
|
|
r'>The file was removed by administrator<',
|
|
|
|
)
|
2014-10-05 14:48:01 -04:00
|
|
|
|
2014-06-17 09:18:46 -04:00
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://gorillavid.in/06y9juieqpmi',
|
|
|
|
'md5': '5ae4a3580620380619678ee4875893ba',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '06y9juieqpmi',
|
2016-06-12 14:11:14 -04:00
|
|
|
'ext': 'mp4',
|
2014-10-05 14:47:22 -04:00
|
|
|
'title': 'Rebecca Black My Moment Official Music Video Reaction-6GK87Rc8bzQ',
|
2014-06-17 09:18:46 -04:00
|
|
|
'thumbnail': 're:http://.*\.jpg',
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'url': 'http://gorillavid.in/embed-z08zf8le23c6-960x480.html',
|
2015-05-06 11:43:36 -04:00
|
|
|
'only_matching': True,
|
2014-07-11 05:05:16 -04:00
|
|
|
}, {
|
|
|
|
'url': 'http://daclips.in/3rso4kdn6f9m',
|
2014-07-11 11:23:00 -04:00
|
|
|
'md5': '1ad8fd39bb976eeb66004d3a4895f106',
|
2014-07-11 05:05:16 -04:00
|
|
|
'info_dict': {
|
|
|
|
'id': '3rso4kdn6f9m',
|
|
|
|
'ext': 'mp4',
|
2014-10-26 19:44:27 -04:00
|
|
|
'title': 'Micro Pig piglets ready on 16th July 2009-bG0PdrCdxUc',
|
2014-07-11 05:05:16 -04:00
|
|
|
'thumbnail': 're:http://.*\.jpg',
|
2014-10-26 19:44:27 -04:00
|
|
|
}
|
2014-10-05 01:53:02 -04:00
|
|
|
}, {
|
|
|
|
'url': 'http://movpod.in/0wguyyxi1yca',
|
|
|
|
'only_matching': True,
|
2015-09-05 21:32:06 -04:00
|
|
|
}, {
|
|
|
|
'url': 'http://filehoot.com/3ivfabn7573c.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '3ivfabn7573c',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'youtube-dl test video \'äBaW_jenozKc.mp4.mp4',
|
|
|
|
'thumbnail': 're:http://.*\.jpg',
|
2016-06-10 00:31:06 -04:00
|
|
|
},
|
|
|
|
'skip': 'Video removed',
|
2015-11-11 11:47:28 -05:00
|
|
|
}, {
|
|
|
|
'url': 'http://vidto.me/ku5glz52nqe1.html',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'ku5glz52nqe1',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'test'
|
|
|
|
}
|
2016-02-22 06:37:00 -05:00
|
|
|
}, {
|
|
|
|
'url': 'http://powerwatch.pw/duecjibvicbu',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'duecjibvicbu',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Big Buck Bunny trailer',
|
|
|
|
},
|
2016-06-12 14:11:04 -04:00
|
|
|
}, {
|
|
|
|
'url': 'http://xvidstage.com/e0qcnl03co6z',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'e0qcnl03co6z',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Chucky Prank 2015.mp4',
|
|
|
|
},
|
2016-06-12 14:19:54 -04:00
|
|
|
}, {
|
|
|
|
# removed by administrator
|
|
|
|
'url': 'http://xvidstage.com/amfy7atlkx25',
|
|
|
|
'only_matching': True,
|
2014-06-17 09:18:46 -04:00
|
|
|
}]
|
2014-06-07 22:09:45 -04:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
video_id = mobj.group('id')
|
|
|
|
|
2015-09-05 21:23:53 -04:00
|
|
|
url = 'http://%s/%s' % (mobj.group('host'), video_id)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
2014-06-07 22:09:45 -04:00
|
|
|
|
2016-06-12 14:19:54 -04:00
|
|
|
if any(re.search(p, webpage) for p in self._FILE_NOT_FOUND_REGEXES):
|
2014-10-05 14:48:01 -04:00
|
|
|
raise ExtractorError('Video %s does not exist' % video_id, expected=True)
|
|
|
|
|
2015-07-14 12:36:30 -04:00
|
|
|
fields = self._hidden_inputs(webpage)
|
2014-11-23 14:41:03 -05:00
|
|
|
|
2014-06-17 09:18:46 -04:00
|
|
|
if fields['op'] == 'download1':
|
2014-11-26 09:02:40 -05:00
|
|
|
countdown = int_or_none(self._search_regex(
|
|
|
|
r'<span id="countdown_str">(?:[Ww]ait)?\s*<span id="cxc">(\d+)</span>\s*(?:seconds?)?</span>',
|
|
|
|
webpage, 'countdown', default=None))
|
|
|
|
if countdown:
|
|
|
|
self._sleep(countdown, video_id)
|
|
|
|
|
2016-03-25 16:19:24 -04:00
|
|
|
post = urlencode_postdata(fields)
|
2014-06-17 09:18:46 -04:00
|
|
|
|
2015-11-21 11:18:17 -05:00
|
|
|
req = sanitized_Request(url, post)
|
2014-06-17 09:18:46 -04:00
|
|
|
req.add_header('Content-type', 'application/x-www-form-urlencoded')
|
2014-06-07 22:09:45 -04:00
|
|
|
|
2014-06-17 09:18:46 -04:00
|
|
|
webpage = self._download_webpage(req, video_id, 'Downloading video page')
|
|
|
|
|
2015-11-11 11:47:28 -05:00
|
|
|
title = (self._search_regex(
|
2015-11-11 11:44:03 -05:00
|
|
|
[r'style="z-index: [0-9]+;">([^<]+)</span>',
|
|
|
|
r'<td nowrap>([^<]+)</td>',
|
2016-02-22 06:37:00 -05:00
|
|
|
r'h4-fine[^>]*>([^<]+)<',
|
2015-11-11 11:44:03 -05:00
|
|
|
r'>Watch (.+) ',
|
|
|
|
r'<h2 class="video-page-head">([^<]+)</h2>'],
|
2015-11-11 11:47:28 -05:00
|
|
|
webpage, 'title', default=None) or self._og_search_title(webpage)).strip()
|
2016-06-12 14:11:04 -04:00
|
|
|
|
|
|
|
def extract_video_url(default=NO_DEFAULT):
|
|
|
|
return self._search_regex(
|
|
|
|
(r'file\s*:\s*(["\'])(?P<url>http.+?)\1,',
|
|
|
|
r'file_link\s*=\s*(["\'])(?P<url>http.+?)\1',
|
|
|
|
r'addVariable\((\\?["\'])file\1\s*,\s*(\\?["\'])(?P<url>http.+?)\2\)',
|
|
|
|
r'<embed[^>]+src=(["\'])(?P<url>http.+?)\1'),
|
|
|
|
webpage, 'file url', default=default, group='url')
|
|
|
|
|
|
|
|
video_url = extract_video_url(default=None)
|
|
|
|
|
|
|
|
if not video_url:
|
|
|
|
webpage = decode_packed_codes(self._search_regex(
|
|
|
|
r"(}\('(.+)',(\d+),(\d+),'[^']*\b(?:file|embed)\b[^']*'\.split\('\|'\))",
|
|
|
|
webpage, 'packed code'))
|
|
|
|
video_url = extract_video_url()
|
|
|
|
|
2014-11-26 09:02:40 -05:00
|
|
|
thumbnail = self._search_regex(
|
2015-11-11 11:44:03 -05:00
|
|
|
r'image\s*:\s*["\'](http[^"\']+)["\'],', webpage, 'thumbnail', default=None)
|
2014-06-17 09:18:46 -04:00
|
|
|
|
|
|
|
formats = [{
|
|
|
|
'format_id': 'sd',
|
2014-10-05 14:47:22 -04:00
|
|
|
'url': video_url,
|
2014-06-17 09:18:46 -04:00
|
|
|
'quality': 1,
|
|
|
|
}]
|
|
|
|
|
|
|
|
return {
|
2014-06-07 22:09:45 -04:00
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2014-06-17 09:18:46 -04:00
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'formats': formats,
|
2014-06-07 22:09:45 -04:00
|
|
|
}
|