2 from __future__ import unicode_literals
6 from .common import InfoExtractor
9 class BellMediaIE(InfoExtractor):
10 _VALID_URL = r'''(?x)https?://(?:www\.)?
20 investigationdiscovery|
28 )/.*?(?:\bvid(?:eoid)?=|-vid|~|%7E|/(?:episode)?)(?P<id>[0-9]{6,})'''
30 'url': 'http://www.ctv.ca/video/player?vid=706966',
31 'md5': 'ff2ebbeae0aa2dcc32a830c3fd69b7b0',
35 'title': 'Larry Day and Richard Jutras on the TIFF red carpet of \'Stonewall\'',
36 'description': 'etalk catches up with Larry Day and Richard Jutras on the TIFF red carpet of "Stonewall”.',
37 'upload_date': '20150919',
38 'timestamp': 1442624700,
40 'expected_warnings': ['HTTP Error 404'],
42 'url': 'http://www.thecomedynetwork.ca/video/player?vid=923582',
43 'only_matching': True,
45 'url': 'http://www.tsn.ca/video/expectations-high-for-milos-raonic-at-us-open~939549',
46 'only_matching': True,
48 'url': 'http://www.bnn.ca/video/berman-s-call-part-two-viewer-questions~939654',
49 'only_matching': True,
51 'url': 'http://www.ctv.ca/YourMorning/Video/S1E6-Monday-August-29-2016-vid938009',
52 'only_matching': True,
54 'url': 'http://www.much.com/shows/atmidnight/episode948007/tuesday-september-13-2016',
55 'only_matching': True,
57 'url': 'http://www.much.com/shows/the-almost-impossible-gameshow/928979/episode-6',
58 'only_matching': True,
60 'url': 'http://www.ctv.ca/DCs-Legends-of-Tomorrow/Video/S2E11-Turncoat-vid1051430',
61 'only_matching': True,
63 'url': 'http://www.etalk.ca/video?videoid=663455',
64 'only_matching': True,
67 'thecomedynetwork': 'comedy',
68 'discoveryvelocity': 'discvel',
69 'sciencechannel': 'discsci',
70 'investigationdiscovery': 'invdisc',
71 'animalplanet': 'aniplan',
75 def _real_extract(self, url):
76 domain, video_id = re.match(self._VALID_URL, url).groups()
77 domain = domain.split('.')[0]
79 '_type': 'url_transparent',
81 'url': '9c9media:%s_web:%s' % (self._DOMAINS.get(domain, domain), video_id),
82 'ie_key': 'NineCNineMedia',