[corus] Add support for history.ca (closes #13359)
[youtube-dl] / youtube_dl / extractor / corus.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .theplatform import ThePlatformFeedIE
7 from ..utils import int_or_none
8
9
10 class CorusIE(ThePlatformFeedIE):
11     _VALID_URL = r'''(?x)
12                     https?://
13                         (?:www\.)?
14                         (?P<domain>
15                             (?:globaltv|etcanada)\.com|
16                             (?:hgtv|foodnetwork|slice|history)\.ca
17                         )
18                         /(?:video/|(?:[^/]+/)+(?:videos/[a-z0-9-]+-|video\.html\?.*?\bv=))
19                         (?P<id>\d+)
20                     '''
21     _TESTS = [{
22         'url': 'http://www.hgtv.ca/shows/bryan-inc/videos/movie-night-popcorn-with-bryan-870923331648/',
23         'md5': '05dcbca777bf1e58c2acbb57168ad3a6',
24         'info_dict': {
25             'id': '870923331648',
26             'ext': 'mp4',
27             'title': 'Movie Night Popcorn with Bryan',
28             'description': 'Bryan whips up homemade popcorn, the old fashion way for Jojo and Lincoln.',
29             'uploader': 'SHWM-NEW',
30             'upload_date': '20170206',
31             'timestamp': 1486392197,
32         },
33     }, {
34         'url': 'http://www.foodnetwork.ca/shows/chopped/video/episode/chocolate-obsession/video.html?v=872683587753',
35         'only_matching': True,
36     }, {
37         'url': 'http://etcanada.com/video/873675331955/meet-the-survivor-game-changers-castaways-part-2/',
38         'only_matching': True,
39     }, {
40         'url': 'http://www.history.ca/the-world-without-canada/video/full-episodes/natural-resources/video.html?v=955054659646#video',
41         'only_matching': True,
42     }]
43
44     _TP_FEEDS = {
45         'globaltv': {
46             'feed_id': 'ChQqrem0lNUp',
47             'account_id': 2269680845,
48         },
49         'etcanada': {
50             'feed_id': 'ChQqrem0lNUp',
51             'account_id': 2269680845,
52         },
53         'hgtv': {
54             'feed_id': 'L0BMHXi2no43',
55             'account_id': 2414428465,
56         },
57         'foodnetwork': {
58             'feed_id': 'ukK8o58zbRmJ',
59             'account_id': 2414429569,
60         },
61         'slice': {
62             'feed_id': '5tUJLgV2YNJ5',
63             'account_id': 2414427935,
64         },
65         'history': {
66             'feed_id': 'tQFx_TyyEq4J',
67             'account_id': 2369613659,
68         },
69     }
70
71     def _real_extract(self, url):
72         domain, video_id = re.match(self._VALID_URL, url).groups()
73         feed_info = self._TP_FEEDS[domain.split('.')[0]]
74         return self._extract_feed_info('dtjsEC', feed_info['feed_id'], 'byId=' + video_id, video_id, lambda e: {
75             'episode_number': int_or_none(e.get('pl1$episode')),
76             'season_number': int_or_none(e.get('pl1$season')),
77             'series': e.get('pl1$show'),
78         }, {
79             'HLS': {
80                 'manifest': 'm3u',
81             },
82             'DesktopHLS Default': {
83                 'manifest': 'm3u',
84             },
85             'MP4 MBR': {
86                 'manifest': 'm3u',
87             },
88         }, feed_info['account_id'])