]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/bellmedia.py
[limelight] add support referer protected videos
[yt-dlp.git] / youtube_dl / extractor / bellmedia.py
CommitLineData
9617b557
RA
1# coding: utf-8
2from __future__ import unicode_literals
3
42e05be8
RA
4import re
5
9617b557
RA
6from .common import InfoExtractor
7
8
c035dba1
RA
9class BellMediaIE(InfoExtractor):
10 _VALID_URL = r'''(?x)https?://(?:www\.)?
11 (?P<domain>
12 (?:
13 ctv|
14 tsn|
15 bnn|
16 thecomedynetwork|
17 discovery|
18 discoveryvelocity|
19 sciencechannel|
20 investigationdiscovery|
21 animalplanet|
22 bravo|
23 mtv|
24 space
25 )\.ca|
26 much\.com
27 )/.*?(?:\bvid=|-vid|~|%7E|/(?:episode)?)(?P<id>[0-9]{6})'''
9617b557
RA
28 _TESTS = [{
29 'url': 'http://www.ctv.ca/video/player?vid=706966',
30 'md5': 'ff2ebbeae0aa2dcc32a830c3fd69b7b0',
31 'info_dict': {
32 'id': '706966',
33 'ext': 'mp4',
34 'title': 'Larry Day and Richard Jutras on the TIFF red carpet of \'Stonewall\'',
35 'description': 'etalk catches up with Larry Day and Richard Jutras on the TIFF red carpet of "Stonewall”.',
36 'upload_date': '20150919',
37 'timestamp': 1442624700,
38 },
39 'expected_warnings': ['HTTP Error 404'],
42e05be8
RA
40 }, {
41 'url': 'http://www.thecomedynetwork.ca/video/player?vid=923582',
42 'only_matching': True,
43 }, {
44 'url': 'http://www.tsn.ca/video/expectations-high-for-milos-raonic-at-us-open~939549',
45 'only_matching': True,
46 }, {
47 'url': 'http://www.bnn.ca/video/berman-s-call-part-two-viewer-questions~939654',
48 'only_matching': True,
49 }, {
50 'url': 'http://www.ctv.ca/YourMorning/Video/S1E6-Monday-August-29-2016-vid938009',
51 'only_matching': True,
c035dba1
RA
52 }, {
53 'url': 'http://www.much.com/shows/atmidnight/episode948007/tuesday-september-13-2016',
54 'only_matching': True,
55 }, {
56 'url': 'http://www.much.com/shows/the-almost-impossible-gameshow/928979/episode-6',
57 'only_matching': True,
9617b557 58 }]
c035dba1
RA
59 _DOMAINS = {
60 'thecomedynetwork': 'comedy',
61 'discoveryvelocity': 'discvel',
62 'sciencechannel': 'discsci',
63 'investigationdiscovery': 'invdisc',
64 'animalplanet': 'aniplan',
65 }
9617b557
RA
66
67 def _real_extract(self, url):
42e05be8 68 domain, video_id = re.match(self._VALID_URL, url).groups()
c035dba1 69 domain = domain.split('.')[0]
9617b557
RA
70 return {
71 '_type': 'url_transparent',
72 'id': video_id,
c035dba1 73 'url': '9c9media:%s_web:%s' % (self._DOMAINS.get(domain, domain), video_id),
9617b557
RA
74 'ie_key': 'NineCNineMedia',
75 }