aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ctv.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-15 08:12:12 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-15 08:12:12 +0100
commitc035dba19e815eca4a21f17918e96c2e2bd55d6b (patch)
tree215d7b7a4163c7c7fba1026ec83a95c0f5381c5c /youtube_dl/extractor/ctv.py
parent87148bb7110ed54ef50f0660dfe0a735cdede3ca (diff)
downloadyoutube-dl-c035dba19e815eca4a21f17918e96c2e2bd55d6b.tar.xz
[bellmedia] add support for more sites
Diffstat (limited to 'youtube_dl/extractor/ctv.py')
-rw-r--r--youtube_dl/extractor/ctv.py46
1 files changed, 0 insertions, 46 deletions
diff --git a/youtube_dl/extractor/ctv.py b/youtube_dl/extractor/ctv.py
deleted file mode 100644
index a1fe86316..000000000
--- a/youtube_dl/extractor/ctv.py
+++ /dev/null
@@ -1,46 +0,0 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-import re
-
-from .common import InfoExtractor
-
-
-class CTVIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?(?P<domain>ctv|tsn|bnn|thecomedynetwork)\.ca/.*?(?:\bvid=|-vid|~|%7E)(?P<id>[0-9.]+)'
- _TESTS = [{
- 'url': 'http://www.ctv.ca/video/player?vid=706966',
- 'md5': 'ff2ebbeae0aa2dcc32a830c3fd69b7b0',
- 'info_dict': {
- 'id': '706966',
- 'ext': 'mp4',
- 'title': 'Larry Day and Richard Jutras on the TIFF red carpet of \'Stonewall\'',
- 'description': 'etalk catches up with Larry Day and Richard Jutras on the TIFF red carpet of "Stonewall”.',
- 'upload_date': '20150919',
- 'timestamp': 1442624700,
- },
- 'expected_warnings': ['HTTP Error 404'],
- }, {
- 'url': 'http://www.thecomedynetwork.ca/video/player?vid=923582',
- 'only_matching': True,
- }, {
- 'url': 'http://www.tsn.ca/video/expectations-high-for-milos-raonic-at-us-open~939549',
- 'only_matching': True,
- }, {
- 'url': 'http://www.bnn.ca/video/berman-s-call-part-two-viewer-questions~939654',
- 'only_matching': True,
- }, {
- 'url': 'http://www.ctv.ca/YourMorning/Video/S1E6-Monday-August-29-2016-vid938009',
- 'only_matching': True,
- }]
-
- def _real_extract(self, url):
- domain, video_id = re.match(self._VALID_URL, url).groups()
- if domain == 'thecomedynetwork':
- domain = 'comedy'
- return {
- '_type': 'url_transparent',
- 'id': video_id,
- 'url': '9c9media:%s_web:%s' % (domain, video_id),
- 'ie_key': 'NineCNineMedia',
- }