]> jfr.im git - yt-dlp.git/blame - youtube_dlc/extractor/noovo.py
[skip travis] renaming
[yt-dlp.git] / youtube_dlc / extractor / noovo.py
CommitLineData
1c7c76e4
FB
1# coding: utf-8
2from __future__ import unicode_literals
b5c39537
S
3
4from .brightcove import BrightcoveNewIE
1c7c76e4 5from .common import InfoExtractor
b5c39537
S
6from ..compat import compat_str
7from ..utils import (
8 int_or_none,
a4245ace 9 js_to_json,
b5c39537
S
10 smuggle_url,
11 try_get,
12)
1c7c76e4
FB
13
14
15class NoovoIE(InfoExtractor):
b5c39537 16 _VALID_URL = r'https?://(?:[^/]+\.)?noovo\.ca/videos/(?P<id>[^/]+/[^/?#&]+)'
1c7c76e4 17 _TESTS = [{
b5c39537 18 # clip
1c7c76e4 19 'url': 'http://noovo.ca/videos/rpm-plus/chrysler-imperial',
1c7c76e4
FB
20 'info_dict': {
21 'id': '5386045029001',
1c7c76e4 22 'ext': 'mp4',
1c7c76e4 23 'title': 'Chrysler Imperial',
b5c39537
S
24 'description': 'md5:de3c898d1eb810f3e6243e08c8b4a056',
25 'timestamp': 1491399228,
1c7c76e4 26 'upload_date': '20170405',
b5c39537 27 'uploader_id': '618566855001',
b5c39537
S
28 'series': 'RPM+',
29 },
30 'params': {
31 'skip_download': True,
32 },
1c7c76e4 33 }, {
b5c39537 34 # episode
1c7c76e4 35 'url': 'http://noovo.ca/videos/l-amour-est-dans-le-pre/episode-13-8',
1c7c76e4
FB
36 'info_dict': {
37 'id': '5395865725001',
b5c39537 38 'title': 'Épisode 13 : Les retrouvailles',
a4245ace 39 'description': 'md5:888c3330f0c1b4476c5bc99a1c040473',
1c7c76e4
FB
40 'ext': 'mp4',
41 'timestamp': 1492019320,
1c7c76e4 42 'upload_date': '20170412',
b5c39537 43 'uploader_id': '618566855001',
b5c39537
S
44 'series': "L'amour est dans le pré",
45 'season_number': 5,
46 'episode': 'Épisode 13',
47 'episode_number': 13,
48 },
49 'params': {
50 'skip_download': True,
51 },
1c7c76e4 52 }]
1c7c76e4
FB
53 BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/618566855001/default_default/index.html?videoId=%s'
54
55 def _real_extract(self, url):
56 video_id = self._match_id(url)
1c7c76e4 57
a4245ace 58 webpage = self._download_webpage(url, video_id)
1c7c76e4 59
ba2e3730
S
60 brightcove_id = self._search_regex(
61 r'data-video-id=["\'](\d+)', webpage, 'brightcove id')
b5c39537 62
a4245ace
S
63 data = self._parse_json(
64 self._search_regex(
65 r'(?s)dataLayer\.push\(\s*({.+?})\s*\);', webpage, 'data',
66 default='{}'),
67 video_id, transform_source=js_to_json, fatal=False)
68
69 title = try_get(
70 data, lambda x: x['video']['nom'],
71 compat_str) or self._html_search_meta(
72 'dcterms.Title', webpage, 'title', fatal=True)
73
74 description = self._html_search_meta(
75 ('dcterms.Description', 'description'), webpage, 'description')
b5c39537
S
76
77 series = try_get(
a4245ace
S
78 data, lambda x: x['emission']['nom']) or self._search_regex(
79 r'<div[^>]+class="banner-card__subtitle h4"[^>]*>([^<]+)',
80 webpage, 'series', default=None)
b5c39537 81
a4245ace
S
82 season_el = try_get(data, lambda x: x['emission']['saison'], dict) or {}
83 season = try_get(season_el, lambda x: x['nom'], compat_str)
84 season_number = int_or_none(try_get(season_el, lambda x: x['numero']))
b5c39537 85
a4245ace
S
86 episode_el = try_get(season_el, lambda x: x['episode'], dict) or {}
87 episode = try_get(episode_el, lambda x: x['nom'], compat_str)
88 episode_number = int_or_none(try_get(episode_el, lambda x: x['numero']))
b5c39537
S
89
90 return {
91 '_type': 'url_transparent',
92 'ie_key': BrightcoveNewIE.ie_key(),
ba2e3730
S
93 'url': smuggle_url(
94 self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id,
95 {'geo_countries': ['CA']}),
96 'id': brightcove_id,
a4245ace
S
97 'title': title,
98 'description': description,
b5c39537 99 'series': series,
a4245ace
S
100 'season': season,
101 'season_number': season_number,
b5c39537 102 'episode': episode,
a4245ace 103 'episode_number': episode_number,
b5c39537 104 }