mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[iprima] Clean up a little bit
This commit is contained in:
parent
0bf5cf9886
commit
bc3be21d59
@ -10,7 +10,7 @@ from ..utils import compat_urllib_request
|
|||||||
|
|
||||||
|
|
||||||
class IPrimaIE(InfoExtractor):
|
class IPrimaIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://play\.iprima\.cz/(?P<videogroup>.+)/(?P<videoid>.+)'
|
_VALID_URL = r'https?://play\.iprima\.cz/[^?#]+/(?P<id>[^?#]+)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://play.iprima.cz/particka/particka-92',
|
'url': 'http://play.iprima.cz/particka/particka-92',
|
||||||
@ -29,7 +29,7 @@ class IPrimaIE(InfoExtractor):
|
|||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('videoid')
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
@ -44,18 +44,19 @@ class IPrimaIE(InfoExtractor):
|
|||||||
base_url = ''.join(re.findall(r"embed\['stream'\] = '(.+?)'.+'(\?auth=)'.+'(.+?)';", playerpage)[1])
|
base_url = ''.join(re.findall(r"embed\['stream'\] = '(.+?)'.+'(\?auth=)'.+'(.+?)';", playerpage)[1])
|
||||||
|
|
||||||
zoneGEO = self._html_search_regex(r'"zoneGEO":(.+?),', webpage, 'zoneGEO')
|
zoneGEO = self._html_search_regex(r'"zoneGEO":(.+?),', webpage, 'zoneGEO')
|
||||||
|
|
||||||
if zoneGEO != '0':
|
if zoneGEO != '0':
|
||||||
base_url = base_url.replace('token', 'token_'+zoneGEO)
|
base_url = base_url.replace('token', 'token_' + zoneGEO)
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
for format_id in ['lq', 'hq', 'hd']:
|
for format_id in ['lq', 'hq', 'hd']:
|
||||||
filename = self._html_search_regex(r'"%s_id":(.+?),' % format_id, webpage, 'filename')
|
filename = self._html_search_regex(
|
||||||
|
r'"%s_id":(.+?),' % format_id, webpage, 'filename')
|
||||||
|
|
||||||
if filename == 'null':
|
if filename == 'null':
|
||||||
continue
|
continue
|
||||||
|
|
||||||
real_id = self._search_regex(r'Prima-[0-9]{10}-([0-9]+)_', filename, 'real video id')
|
real_id = self._search_regex(
|
||||||
|
r'Prima-[0-9]{10}-([0-9]+)_', filename, 'real video id')
|
||||||
|
|
||||||
if format_id == 'lq':
|
if format_id == 'lq':
|
||||||
quality = 0
|
quality = 0
|
||||||
@ -63,13 +64,13 @@ class IPrimaIE(InfoExtractor):
|
|||||||
quality = 1
|
quality = 1
|
||||||
elif format_id == 'hd':
|
elif format_id == 'hd':
|
||||||
quality = 2
|
quality = 2
|
||||||
filename = 'hq/'+filename
|
filename = 'hq/' + filename
|
||||||
|
|
||||||
formats.append({
|
formats.append({
|
||||||
'format_id': format_id,
|
'format_id': format_id,
|
||||||
'url': base_url,
|
'url': base_url,
|
||||||
'quality': quality,
|
'quality': quality,
|
||||||
'play_path': 'mp4:'+filename.replace('"', '')[:-4],
|
'play_path': 'mp4:' + filename.replace('"', '')[:-4],
|
||||||
'rtmp_live': True,
|
'rtmp_live': True,
|
||||||
'ext': 'flv',
|
'ext': 'flv',
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user