1 from __future__ 
import unicode_literals
 
   3 from .common 
import InfoExtractor
 
   4 from ..compat 
import compat_b64decode
 
  12 class SharedBaseIE(InfoExtractor
): 
  13     def _real_extract(self
, url
): 
  14         video_id 
= self
._match
_id
(url
) 
  16         webpage
, urlh 
= self
._download
_webpage
_handle
(url
, video_id
) 
  18         if self
._FILE
_NOT
_FOUND 
in webpage
: 
  20                 'Video %s does not exist' % video_id
, expected
=True) 
  22         video_url 
= self
._extract
_video
_url
(webpage
, video_id
, url
) 
  24         title 
= compat_b64decode(self
._html
_search
_meta
( 
  25             'full:title', webpage
, 'title')).decode('utf-8') 
  26         filesize 
= int_or_none(self
._html
_search
_meta
( 
  27             'full:size', webpage
, 'file size', fatal
=False)) 
  38 class SharedIE(SharedBaseIE
): 
  40     _VALID_URL 
= r
'https?://shared\.sx/(?P<id>[\da-z]{10})' 
  41     _FILE_NOT_FOUND 
= '>File does not exist<' 
  44         'url': 'http://shared.sx/0060718775', 
  45         'md5': '106fefed92a8a2adb8c98e6a0652f49b', 
  54     def _extract_video_url(self
, webpage
, video_id
, url
): 
  55         download_form 
= self
._hidden
_inputs
(webpage
) 
  57         video_page 
= self
._download
_webpage
( 
  58             url
, video_id
, 'Downloading video page', 
  59             data
=urlencode_postdata(download_form
), 
  61                 'Content-Type': 'application/x-www-form-urlencoded', 
  65         video_url 
= self
._html
_search
_regex
( 
  66             r
'data-url=(["\'])(?P
<url
>(?
:(?
!\
1).)+)\
1', 
  67             video_page, 'video URL
', group='url
') 
  72 class VivoIE(SharedBaseIE): 
  74     _VALID_URL = r'https?
://vivo\
.sx
/(?P
<id>[\da
-z
]{10}
)' 
  75     _FILE_NOT_FOUND = '>The 
file you have requested does 
not exists 
or has been removed
' 
  78         'url
': 'http
://vivo
.sx
/d7ddda0e78
', 
  79         'md5
': '15b3af41be0b4fe01f4df075c2678b2c
', 
  88     def _extract_video_url(self, webpage, video_id, *args): 
  89         return self._parse_json( 
  91                 r'InitializeStream\s
*\
(\s
*(["\'])(?P<url>(?:(?!\1).)+)\1', 
  92                 webpage, 'stream', group='url'), 
  94             transform_source=lambda x: compat_b64decode(x).decode('utf-8'))[0]