[youtube] Skip unsupported adaptive stream type (#18804)
[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|showcase)\.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         'url': 'http://www.showcase.ca/eyewitness/video/eyewitness++106/video.html?v=955070531919&p=1&s=da#video',
44         'only_matching': True,
45     }]
46
47     _TP_FEEDS = {
48         'globaltv': {
49             'feed_id': 'ChQqrem0lNUp',
50             'account_id': 2269680845,
51         },
52         'etcanada': {
53             'feed_id': 'ChQqrem0lNUp',
54             'account_id': 2269680845,
55         },
56         'hgtv': {
57             'feed_id': 'L0BMHXi2no43',
58             'account_id': 2414428465,
59         },
60         'foodnetwork': {
61             'feed_id': 'ukK8o58zbRmJ',
62             'account_id': 2414429569,
63         },
64         'slice': {
65             'feed_id': '5tUJLgV2YNJ5',
66             'account_id': 2414427935,
67         },
68         'history': {
69             'feed_id': 'tQFx_TyyEq4J',
70             'account_id': 2369613659,
71         },
72         'showcase': {
73             'feed_id': '9H6qyshBZU3E',
74             'account_id': 2414426607,
75         },
76     }
77
78     def _real_extract(self, url):
79         domain, video_id = re.match(self._VALID_URL, url).groups()
80         feed_info = self._TP_FEEDS[domain.split('.')[0]]
81         return self._extract_feed_info('dtjsEC', feed_info['feed_id'], 'byId=' + video_id, video_id, lambda e: {
82             'episode_number': int_or_none(e.get('pl1$episode')),
83             'season_number': int_or_none(e.get('pl1$season')),
84             'series': e.get('pl1$show'),
85         }, {
86             'HLS': {
87                 'manifest': 'm3u',
88             },
89             'DesktopHLS Default': {
90                 'manifest': 'm3u',
91             },
92             'MP4 MBR': {
93                 'manifest': 'm3u',
94             },
95         }, feed_info['account_id'])