3 from .common
import InfoExtractor
13 class ZapiksIE(InfoExtractor
):
14 _VALID_URL
= r
'https?://(?:www\.)?zapiks\.(?:fr|com)/(?:(?:[a-z]{2}/)?(?P<display_id>.+?)\.html|index\.php\?.*\bmedia_id=(?P<id>\d+))'
15 _EMBED_REGEX
= [r
'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"']
18 'url': 'http://www.zapiks.fr/ep2s3-bon-appetit-eh-be-viva.html',
19 'md5': 'aeb3c473b2d564b2d46d664d28d5f050',
23 'title': 'EP2S3 - Bon Appétit - Eh bé viva les pyrénées con!',
24 'description': 'md5:7054d6f6f620c6519be1fe710d4da847',
25 'thumbnail': r
're:^https?://.*\.jpg$',
27 'timestamp': 1359044972,
28 'upload_date': '20130124',
33 'url': 'http://www.zapiks.com/ep3s5-bon-appetit-baqueira-m-1.html',
34 'only_matching': True,
37 'url': 'http://www.zapiks.com/nl/ep3s5-bon-appetit-baqueira-m-1.html',
38 'only_matching': True,
41 'url': 'http://www.zapiks.fr/index.php?action=playerIframe&media_id=118046&width=640&height=360&autoStart=false&language=fr',
42 'only_matching': True,
46 def _real_extract(self
, url
):
47 mobj
= self
._match
_valid
_url
(url
)
48 video_id
= mobj
.group('id')
49 display_id
= mobj
.group('display_id') or video_id
51 webpage
= self
._download
_webpage
(url
, display_id
)
54 video_id
= self
._search
_regex
(
55 r
'data-media-id="(\d+)"', webpage
, 'video id')
57 playlist
= self
._download
_xml
(
58 f
'http://www.zapiks.fr/view/index.php?action=playlist&media_id={video_id}&lang=en',
62 'jwplayer': 'http://rss.jwpcdn.com/',
66 return xpath_with_ns(path
, NS_MAP
)
68 item
= playlist
.find('./channel/item')
70 title
= xpath_text(item
, 'title', 'title') or self
._og
_search
_title
(webpage
)
71 description
= self
._og
_search
_description
(webpage
, default
=None)
72 thumbnail
= xpath_text(
73 item
, ns('./jwplayer:image'), 'thumbnail') or self
._og
_search
_thumbnail
(webpage
, default
=None)
74 duration
= parse_duration(self
._html
_search
_meta
(
75 'duration', webpage
, 'duration', default
=None))
76 timestamp
= parse_iso8601(self
._html
_search
_meta
(
77 'uploadDate', webpage
, 'upload date', default
=None), ' ')
79 view_count
= int_or_none(self
._search
_regex
(
80 r
'UserPlays:(\d+)', webpage
, 'view count', default
=None))
81 comment_count
= int_or_none(self
._search
_regex
(
82 r
'UserComments:(\d+)', webpage
, 'comment count', default
=None))
85 for source
in item
.findall(ns('./jwplayer:source')):
86 format_id
= source
.attrib
['label']
88 'url': source
.attrib
['file'],
89 'format_id': format_id
,
91 m
= re
.search(r
'^(?P<height>\d+)[pP]', format_id
)
93 f
['height'] = int(m
.group('height'))
99 'description': description
,
100 'thumbnail': thumbnail
,
101 'duration': duration
,
102 'timestamp': timestamp
,
103 'view_count': view_count
,
104 'comment_count': comment_count
,