]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/xfileshare.py
13f8be6cbe365a0413be0b84d26ccd7c33b68e77
2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
18 class XFileShareIE(InfoExtractor
):
20 (r
'daclips\.(?:in|com)', 'DaClips'),
21 (r
'filehoot\.com', 'FileHoot'),
22 (r
'gorillavid\.(?:in|com)', 'GorillaVid'),
23 (r
'movpod\.in', 'MovPod'),
24 (r
'powerwatch\.pw', 'PowerWatch'),
25 (r
'rapidvideo\.ws', 'Rapidvideo.ws'),
26 (r
'thevideobee\.to', 'TheVideoBee'),
27 (r
'vidto\.me', 'Vidto'),
28 (r
'streamin\.to', 'Streamin.To'),
29 (r
'xvidstage\.com', 'XVIDSTAGE'),
30 (r
'vidabc\.com', 'Vid ABC'),
31 (r
'vidbom\.com', 'VidBom'),
32 (r
'vidlo\.us', 'vidlo'),
35 IE_DESC
= 'XFileShare based sites: %s' % ', '.join(list(zip(*_SITES
))[1])
36 _VALID_URL
= (r
'https?://(?P<host>(?:www\.)?(?:%s))/(?:embed-)?(?P<id>[0-9a-zA-Z]+)'
37 % '|'.join(site
for site
in list(zip(*_SITES
))[0]))
39 _FILE_NOT_FOUND_REGEXES
= (
40 r
'>(?:404 - )?File Not Found<',
41 r
'>The file was removed by administrator<',
45 'url': 'http://gorillavid.in/06y9juieqpmi',
46 'md5': '5ae4a3580620380619678ee4875893ba',
50 'title': 'Rebecca Black My Moment Official Music Video Reaction-6GK87Rc8bzQ',
51 'thumbnail': r
're:http://.*\.jpg',
54 'url': 'http://gorillavid.in/embed-z08zf8le23c6-960x480.html',
55 'only_matching': True,
57 'url': 'http://daclips.in/3rso4kdn6f9m',
58 'md5': '1ad8fd39bb976eeb66004d3a4895f106',
62 'title': 'Micro Pig piglets ready on 16th July 2009-bG0PdrCdxUc',
63 'thumbnail': r
're:http://.*\.jpg',
66 'url': 'http://movpod.in/0wguyyxi1yca',
67 'only_matching': True,
69 'url': 'http://filehoot.com/3ivfabn7573c.html',
73 'title': 'youtube-dl test video \'äBaW_jenozKc.mp4.mp4',
74 'thumbnail': r
're:http://.*\.jpg',
76 'skip': 'Video removed',
78 'url': 'http://vidto.me/ku5glz52nqe1.html',
85 'url': 'http://powerwatch.pw/duecjibvicbu',
89 'title': 'Big Buck Bunny trailer',
92 'url': 'http://xvidstage.com/e0qcnl03co6z',
96 'title': 'Chucky Prank 2015.mp4',
99 # removed by administrator
100 'url': 'http://xvidstage.com/amfy7atlkx25',
101 'only_matching': True,
103 'url': 'http://vidabc.com/i8ybqscrphfv',
105 'id': 'i8ybqscrphfv',
107 'title': 're:Beauty and the Beast 2017',
110 'skip_download': True,
114 def _real_extract(self
, url
):
115 mobj
= re
.match(self
._VALID
_URL
, url
)
116 video_id
= mobj
.group('id')
118 url
= 'http://%s/%s' % (mobj
.group('host'), video_id
)
119 webpage
= self
._download
_webpage
(url
, video_id
)
121 if any(re
.search(p
, webpage
) for p
in self
._FILE
_NOT
_FOUND
_REGEXES
):
122 raise ExtractorError('Video %s does not exist' % video_id
, expected
=True)
124 fields
= self
._hidden
_inputs
(webpage
)
126 if fields
['op'] == 'download1':
127 countdown
= int_or_none(self
._search
_regex
(
128 r
'<span id="countdown_str">(?:[Ww]ait)?\s*<span id="cxc">(\d+)</span>\s*(?:seconds?)?</span>',
129 webpage
, 'countdown', default
=None))
131 self
._sleep
(countdown
, video_id
)
133 post
= urlencode_postdata(fields
)
135 req
= sanitized_Request(url
, post
)
136 req
.add_header('Content-type', 'application/x-www-form-urlencoded')
138 webpage
= self
._download
_webpage
(req
, video_id
, 'Downloading video page')
140 title
= (self
._search
_regex
(
141 (r
'style="z-index: [0-9]+;">([^<]+)</span>',
142 r
'<td nowrap>([^<]+)</td>',
143 r
'h4-fine[^>]*>([^<]+)<',
145 r
'<h2 class="video-page-head">([^<]+)</h2>',
146 r
'<h2 style="[^"]*color:#403f3d[^"]*"[^>]*>([^<]+)<'), # streamin.to
147 webpage
, 'title', default
=None) or self
._og
_search
_title
(
148 webpage
, default
=None) or video_id
).strip()
150 def extract_formats(default
=NO_DEFAULT
):
153 r
'file\s*:\s*(["\'])(?P
<url
>http(?
:(?
!\
1).)+\
.(?
:m3u8|mp4|flv
)(?
:(?
!\
1).)*)\
1',
154 r'file_link\s
*=\s
*(["\'])(?P<url>http(?:(?!\1).)+)\1',
155 r'addVariable\((\\?["\'])file\
1\s
*,\s
*(\\?
["\'])(?P<url>http(?:(?!\2).)+)\2\)',
156 r'<embed[^>]+src=(["\'])(?P
<url
>http(?
:(?
!\
1).)+\
.(?
:m3u8|mp4|flv
)(?
:(?
!\
1).)*)\
1'):
157 for mobj in re.finditer(regex, webpage):
158 video_url = mobj.group('url
')
159 if video_url not in urls:
160 urls.append(video_url)
162 for video_url in urls:
163 if determine_ext(video_url) == 'm3u8
':
164 formats.extend(self._extract_m3u8_formats(
165 video_url, video_id, 'mp4
',
166 entry_protocol='m3u8_native
', m3u8_id='hls
',
173 if not formats and default is not NO_DEFAULT:
175 self._sort_formats(formats)
178 formats = extract_formats(default=None)
181 webpage = decode_packed_codes(self._search_regex(
182 r"(}\('(.+)',(\d+),(\d+),'[^
']*\b(?:file|embed)\b[^']*'\.split\('\|
'\))",
183 webpage, 'packed code
'))
184 formats = extract_formats()
186 thumbnail = self._search_regex(
187 r'image\s
*:\s
*["\'](http[^"\']+)["\'],', webpage, 'thumbnail', default=None)
192 'thumbnail': thumbnail,