]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/iprima.py
1 # -*- coding: utf-8 -*-
2 from __future__
import unicode_literals
5 from random
import random
8 from .common
import InfoExtractor
9 from ..utils
import compat_urllib_request
12 class IPrimaIE(InfoExtractor
):
13 _VALID_URL
= r
'https?://play\.iprima\.cz/(?P<videogroup>.+)/(?P<videoid>.+)'
16 'url': 'http://play.iprima.cz/particka/particka-92',
20 'title': 'Partička (92)',
21 'description': 'md5:3740fda51464da35a2d4d0670b8e4fd6',
22 'thumbnail': 'http://play.iprima.cz/sites/default/files/image_crops/image_620x349/3/491483_particka-92_image_620x349.jpg',
25 'skip_download': True,
30 def _real_extract(self
, url
):
31 mobj
= re
.match(self
._VALID
_URL
, url
)
32 video_id
= mobj
.group('videoid')
34 webpage
= self
._download
_webpage
(url
, video_id
)
36 player_url
= 'http://embed.livebox.cz/iprimaplay/player-embed-v2.js?__tok%s__=%s' % (
37 floor(random()*1073741824),
38 floor(random()*1073741824))
40 req
= compat_urllib_request
.Request(player_url
)
41 req
.add_header('Referer', url
)
42 playerpage
= self
._download
_webpage
(req
, video_id
)
44 base_url
= ''.join(re
.findall(r
"embed\['stream'\] = '(.+?)'.+'(\?auth=)'.+'(.+?)';", playerpage
)[1])
46 zoneGEO
= self
._html
_search
_regex
(r
'"zoneGEO":(.+?),', webpage
, 'zoneGEO')
49 base_url
= base_url
.replace('token', 'token_'+zoneGEO
)
52 for format_id
in ['lq', 'hq', 'hd']:
53 filename
= self
._html
_search
_regex
(r
'"%s_id":(.+?),' % format_id
, webpage
, 'filename')
55 if filename
== 'null':
58 real_id
= self
._search
_regex
(r
'Prima-[0-9]{10}-([0-9]+)_', filename
, 'real video id')
62 elif format_id
== 'hq':
64 elif format_id
== 'hd':
66 filename
= 'hq/'+filename
69 'format_id': format_id
,
72 'play_path': 'mp4:'+filename
.replace('"', '')[:-4],
77 self
._sort
_formats
(formats
)
81 'title': self
._og
_search
_title
(webpage
),
82 'thumbnail': self
._og
_search
_thumbnail
(webpage
),
84 'description': self
._og
_search
_description
(webpage
),