]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/bellmedia.py
[tv2] detect DRM protection
[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|
9c65c4a6 15 bnn(?:bloomberg)?|
c035dba1
RA
16 thecomedynetwork|
17 discovery|
18 discoveryvelocity|
19 sciencechannel|
20 investigationdiscovery|
21 animalplanet|
22 bravo|
23 mtv|
52d5ecab 24 space|
726e8eef
RA
25 etalk|
26 marilyn
c035dba1
RA
27 )\.ca|
28 much\.com
52d5ecab 29 )/.*?(?:\bvid(?:eoid)?=|-vid|~|%7E|/(?:episode)?)(?P<id>[0-9]{6,})'''
9617b557 30 _TESTS = [{
9c65c4a6
RA
31 'url': 'https://www.bnnbloomberg.ca/video/david-cockfield-s-top-picks~1403070',
32 'md5': '36d3ef559cfe8af8efe15922cd3ce950',
9617b557 33 'info_dict': {
9c65c4a6
RA
34 'id': '1403070',
35 'ext': 'flv',
36 'title': 'David Cockfield\'s Top Picks',
37 'description': 'md5:810f7f8c6a83ad5b48677c3f8e5bb2c3',
38 'upload_date': '20180525',
39 'timestamp': 1527288600,
9617b557 40 },
42e05be8
RA
41 }, {
42 'url': 'http://www.thecomedynetwork.ca/video/player?vid=923582',
43 'only_matching': True,
44 }, {
45 'url': 'http://www.tsn.ca/video/expectations-high-for-milos-raonic-at-us-open~939549',
46 'only_matching': True,
47 }, {
48 'url': 'http://www.bnn.ca/video/berman-s-call-part-two-viewer-questions~939654',
49 'only_matching': True,
50 }, {
51 'url': 'http://www.ctv.ca/YourMorning/Video/S1E6-Monday-August-29-2016-vid938009',
52 'only_matching': True,
c035dba1
RA
53 }, {
54 'url': 'http://www.much.com/shows/atmidnight/episode948007/tuesday-september-13-2016',
55 'only_matching': True,
56 }, {
57 'url': 'http://www.much.com/shows/the-almost-impossible-gameshow/928979/episode-6',
58 'only_matching': True,
89c6691f
RA
59 }, {
60 'url': 'http://www.ctv.ca/DCs-Legends-of-Tomorrow/Video/S2E11-Turncoat-vid1051430',
61 'only_matching': True,
52d5ecab
RA
62 }, {
63 'url': 'http://www.etalk.ca/video?videoid=663455',
64 'only_matching': True,
9617b557 65 }]
c035dba1
RA
66 _DOMAINS = {
67 'thecomedynetwork': 'comedy',
68 'discoveryvelocity': 'discvel',
69 'sciencechannel': 'discsci',
70 'investigationdiscovery': 'invdisc',
71 'animalplanet': 'aniplan',
52d5ecab 72 'etalk': 'ctv',
9c65c4a6 73 'bnnbloomberg': 'bnn',
726e8eef 74 'marilyn': 'ctv_marilyn',
c035dba1 75 }
9617b557
RA
76
77 def _real_extract(self, url):
42e05be8 78 domain, video_id = re.match(self._VALID_URL, url).groups()
c035dba1 79 domain = domain.split('.')[0]
9617b557
RA
80 return {
81 '_type': 'url_transparent',
82 'id': video_id,
c035dba1 83 'url': '9c9media:%s_web:%s' % (self._DOMAINS.get(domain, domain), video_id),
9617b557
RA
84 'ie_key': 'NineCNineMedia',
85 }