]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/shared.py
d592dfeb8ed99d45d7c9b8245f5570e06f260a20
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
13 class SharedIE(InfoExtractor
):
14 IE_DESC
= 'shared.sx and vivo.sx'
15 _VALID_URL
= r
'https?://(?:shared|vivo)\.sx/(?P<id>[\da-z]{10})'
18 'url': 'http://shared.sx/0060718775',
19 'md5': '106fefed92a8a2adb8c98e6a0652f49b',
27 'url': 'http://vivo.sx/d7ddda0e78',
28 'md5': '15b3af41be0b4fe01f4df075c2678b2c',
37 def _real_extract(self
, url
):
38 video_id
= self
._match
_id
(url
)
40 webpage
, urlh
= self
._download
_webpage
_handle
(url
, video_id
)
42 if '>File does not exist<' in webpage
:
44 'Video %s does not exist' % video_id
, expected
=True)
46 download_form
= self
._hidden
_inputs
(webpage
)
48 video_page
= self
._download
_webpage
(
49 urlh
.geturl(), video_id
, 'Downloading video page',
50 data
=urlencode_postdata(download_form
),
52 'Content-Type': 'application/x-www-form-urlencoded',
53 'Referer': urlh
.geturl(),
56 video_url
= self
._html
_search
_regex
(
57 r
'data-url=(["\'])(?P
<url
>(?
:(?
!\
1).)+)\
1',
58 video_page, 'video URL
', group='url
')
59 title = base64.b64decode(self._html_search_meta(
60 'full
:title
', webpage, 'title
').encode('utf
-8')).decode('utf
-8')
61 filesize = int_or_none(self._html_search_meta(
62 'full
:size
', webpage, 'file size
', fatal=False))
63 thumbnail = self._html_search_regex(
64 r'data
-poster
=(["\'])(?P<url>(?:(?!\1).)+)\1',
65 video_page, 'thumbnail', default=None, group='url')
73 'thumbnail': thumbnail,