4 from .common import InfoExtractor
7 class VideoPremiumIE(InfoExtractor):
8 _VALID_URL = r'(?:https?://)?(?:www\.)?videopremium\.(?:tv|me)/(?P<id>\w+)(?:/.*)?'
10 u'url': u'http://videopremium.tv/4w7oadjsf156',
11 u'file': u'4w7oadjsf156.f4v',
13 u"title": u"youtube-dl_test_video____a_________-BaW_jenozKc.mp4.mp4"
16 u'skip_download': True,
18 u'skip': u'Test file has been deleted.',
21 def _real_extract(self, url):
22 mobj = re.match(self._VALID_URL, url)
24 video_id = mobj.group('id')
25 webpage_url = 'http://videopremium.tv/' + video_id
26 webpage = self._download_webpage(webpage_url, video_id)
28 if re.match(r"^<html><head><script[^>]*>window.location\s*=", webpage):
29 # Download again, we need a cookie
30 webpage = self._download_webpage(
31 webpage_url, video_id,
32 note=u'Downloading webpage again (with cookie)')
34 video_title = self._html_search_regex(
35 r'<h2(?:.*?)>\s*(.+?)\s*<', webpage, u'video title')
39 'url': "rtmp://e%d.md.iplay.md/play" % random.randint(1, 16),
40 'play_path': "mp4:%s.f4v" % video_id,
41 'page_url': "http://videopremium.tv/" + video_id,
42 'player_url': "http://videopremium.tv/uplayer/uppod.swf",