aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/bellmedia.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-03-23 13:48:32 +0100
committerRemita Amine <remitamine@gmail.com>2017-03-23 13:52:45 +0100
commit52d5ecabd518db46fc02b8624b2ad04ba7cf2114 (patch)
treeed631c22a7ec191452cb4b22b94f82f3df75c909 /youtube_dl/extractor/bellmedia.py
parentb0f7f21cb92ca3af1795f68737ffa25196968dc6 (diff)
downloadyoutube-dl-52d5ecabd518db46fc02b8624b2ad04ba7cf2114.tar.xz
[bellmedia] add support for etalk.ca(closes #12447)
Diffstat (limited to 'youtube_dl/extractor/bellmedia.py')
-rw-r--r--youtube_dl/extractor/bellmedia.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/youtube_dl/extractor/bellmedia.py b/youtube_dl/extractor/bellmedia.py
index 1f5b6ed92..8820a3914 100644
--- a/youtube_dl/extractor/bellmedia.py
+++ b/youtube_dl/extractor/bellmedia.py
@@ -21,10 +21,11 @@ class BellMediaIE(InfoExtractor):
animalplanet|
bravo|
mtv|
- space
+ space|
+ etalk
)\.ca|
much\.com
- )/.*?(?:\bvid=|-vid|~|%7E|/(?:episode)?)(?P<id>[0-9]{6,})'''
+ )/.*?(?:\bvid(?:eoid)?=|-vid|~|%7E|/(?:episode)?)(?P<id>[0-9]{6,})'''
_TESTS = [{
'url': 'http://www.ctv.ca/video/player?vid=706966',
'md5': 'ff2ebbeae0aa2dcc32a830c3fd69b7b0',
@@ -58,6 +59,9 @@ class BellMediaIE(InfoExtractor):
}, {
'url': 'http://www.ctv.ca/DCs-Legends-of-Tomorrow/Video/S2E11-Turncoat-vid1051430',
'only_matching': True,
+ }, {
+ 'url': 'http://www.etalk.ca/video?videoid=663455',
+ 'only_matching': True,
}]
_DOMAINS = {
'thecomedynetwork': 'comedy',
@@ -65,6 +69,7 @@ class BellMediaIE(InfoExtractor):
'sciencechannel': 'discsci',
'investigationdiscovery': 'invdisc',
'animalplanet': 'aniplan',
+ 'etalk': 'ctv',
}
def _real_extract(self, url):