2 from __future__
import unicode_literals
6 from .common
import InfoExtractor
7 from ..compat
import compat_urllib_parse_urlparse
17 class CanalplusIE(InfoExtractor
):
18 IE_DESC
= 'canalplus.fr, piwiplus.fr and d8.tv'
23 (?:(?:www|m)\.)?canalplus\.fr|
24 (?:www\.)?piwiplus\.fr|
28 )/(?:(?:[^/]+/)*(?P<display_id>[^/?#&]+))?(?:\?.*\bvid=(?P<vid>\d+))?|
29 player\.canalplus\.fr/#/(?P<id>\d+)
33 _VIDEO_INFO_TEMPLATE
= 'http://service.canal-plus.com/video/rest/getVideosLiees/%s/%s?format=json'
36 'piwiplus': 'teletoon',
43 'url': 'http://www.canalplus.fr/c-emissions/pid1830-c-zapping.html?vid=1192814',
44 'md5': '41f438a4904f7664b91b4ed0dec969dc',
48 'title': "L'Année du Zapping 2014 - L'Année du Zapping 2014",
49 'description': "Toute l'année 2014 dans un Zapping exceptionnel !",
50 'upload_date': '20150105',
53 'url': 'http://www.piwiplus.fr/videos-piwi/pid1405-le-labyrinthe-boing-super-ranger.html?vid=1108190',
57 'title': 'Le labyrinthe - Boing super ranger',
58 'description': 'md5:4cea7a37153be42c1ba2c1d3064376ff',
59 'upload_date': '20140724',
61 'skip': 'Only works from France',
63 'url': 'http://www.d8.tv/d8-docs-mags/pid5198-d8-en-quete-d-actualite.html?vid=1390231',
67 'title': "Vacances pas chères : prix discount ou grosses dépenses ? - En quête d'actualité",
68 'description': 'md5:edb6cf1cb4a1e807b5dd089e1ac8bfc6',
69 'upload_date': '20160512',
72 'skip_download': True,
75 'url': 'http://www.itele.fr/chroniques/invite-bruce-toussaint/thierry-solere-nicolas-sarkozy-officialisera-sa-candidature-a-la-primaire-quand-il-le-voudra-167224',
79 'title': "L'invité de Bruce Toussaint du 07/06/2016 - ",
80 'description': 'md5:40ac7c9ad0feaeb6f605bad986f61324',
81 'upload_date': '20160607',
84 'skip_download': True,
87 'url': 'http://m.canalplus.fr/?vid=1398231',
88 'only_matching': True,
90 'url': 'http://www.d17.tv/emissions/pid8303-lolywood.html?vid=1397061',
91 'only_matching': True,
94 def _real_extract(self
, url
):
95 mobj
= re
.match(self
._VALID
_URL
, url
)
96 video_id
= mobj
.groupdict().get('id') or mobj
.groupdict().get('vid')
98 site_id
= self
._SITE
_ID
_MAP
[compat_urllib_parse_urlparse(url
).netloc
.rsplit('.', 2)[-2]]
100 # Beware, some subclasses do not define an id group
101 display_id
= mobj
.group('display_id') or video_id
104 webpage
= self
._download
_webpage
(url
, display_id
)
105 video_id
= self
._search
_regex
(
106 [r
'<canal:player[^>]+?videoId=(["\'])(?P
<id>\d
+)', r'id=["\']canal_video_player(?P<id>\d+)'],
107 webpage, 'video id', group='id')
109 info_url = self._VIDEO_INFO_TEMPLATE % (site_id, video_id)
110 video_data = self._download_json(info_url, video_id, 'Downloading video JSON')
112 if isinstance(video_data, list):
113 video_data = [video for video in video_data if video.get('ID') == video_id][0]
114 media = video_data['MEDIA']
115 infos = video_data['INFOS']
117 preference = qualities(['MOBILE', 'BAS_DEBIT', 'HAUT_DEBIT', 'HD'])
119 fmt_url = next(iter(media.get('VIDEOS')))
120 if '/geo' in fmt_url.lower():
121 response = self._request_webpage(
122 HEADRequest(fmt_url), video_id,
123 'Checking if the video is georestricted')
124 if '/blocage' in response.geturl():
125 raise ExtractorError(
126 'The video is not available in your country',
130 for format_id, format_url in media['VIDEOS'].items():
133 if format_id == 'HLS':
134 formats.extend(self._extract_m3u8_formats(
135 format_url, video_id, 'mp4', 'm3u8_native', m3u8_id=format_id, fatal=False))
136 elif format_id == 'HDS':
137 formats.extend(self._extract_f4m_formats(
138 format_url + '?hdcore=2.11.3', video_id, f4m_id=format_id, fatal=False))
141 # the secret extracted ya function in http://player.canalplus.fr/common/js/canalPlayer.js
142 'url': format_url + '?secret=pqzerjlsmdkjfoiuerhsdlfknaes',
143 'format_id': format_id,
144 'preference': preference(format_id),
146 self._sort_formats(formats)
151 } for image_id, image_url in media.get('images', {}).items()]
153 titrage = infos['TITRAGE']
157 'display_id': display_id,
158 'title': '%s - %s' % (titrage['TITRE'],
159 titrage['SOUS_TITRE']),
160 'upload_date': unified_strdate(infos.get('PUBLICATION', {}).get('DATE')),
161 'thumbnails': thumbnails,
162 'description': infos.get('DESCRIPTION'),
163 'duration': int_or_none(infos.get('DURATION')),
164 'view_count': int_or_none(infos.get('NB_VUES')),
165 'like_count': int_or_none(infos.get('NB_LIKES')),
166 'comment_count': int_or_none(infos.get('NB_COMMENTS')),