mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[bellmedia] add support for more sites
This commit is contained in:
parent
87148bb711
commit
c035dba19e
@ -6,8 +6,25 @@
|
|||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
class CTVIE(InfoExtractor):
|
class BellMediaIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?(?P<domain>ctv|tsn|bnn|thecomedynetwork)\.ca/.*?(?:\bvid=|-vid|~|%7E)(?P<id>[0-9.]+)'
|
_VALID_URL = r'''(?x)https?://(?:www\.)?
|
||||||
|
(?P<domain>
|
||||||
|
(?:
|
||||||
|
ctv|
|
||||||
|
tsn|
|
||||||
|
bnn|
|
||||||
|
thecomedynetwork|
|
||||||
|
discovery|
|
||||||
|
discoveryvelocity|
|
||||||
|
sciencechannel|
|
||||||
|
investigationdiscovery|
|
||||||
|
animalplanet|
|
||||||
|
bravo|
|
||||||
|
mtv|
|
||||||
|
space
|
||||||
|
)\.ca|
|
||||||
|
much\.com
|
||||||
|
)/.*?(?:\bvid=|-vid|~|%7E|/(?:episode)?)(?P<id>[0-9]{6})'''
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'http://www.ctv.ca/video/player?vid=706966',
|
'url': 'http://www.ctv.ca/video/player?vid=706966',
|
||||||
'md5': 'ff2ebbeae0aa2dcc32a830c3fd69b7b0',
|
'md5': 'ff2ebbeae0aa2dcc32a830c3fd69b7b0',
|
||||||
@ -32,15 +49,27 @@ class CTVIE(InfoExtractor):
|
|||||||
}, {
|
}, {
|
||||||
'url': 'http://www.ctv.ca/YourMorning/Video/S1E6-Monday-August-29-2016-vid938009',
|
'url': 'http://www.ctv.ca/YourMorning/Video/S1E6-Monday-August-29-2016-vid938009',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://www.much.com/shows/atmidnight/episode948007/tuesday-september-13-2016',
|
||||||
|
'only_matching': True,
|
||||||
|
}, {
|
||||||
|
'url': 'http://www.much.com/shows/the-almost-impossible-gameshow/928979/episode-6',
|
||||||
|
'only_matching': True,
|
||||||
}]
|
}]
|
||||||
|
_DOMAINS = {
|
||||||
|
'thecomedynetwork': 'comedy',
|
||||||
|
'discoveryvelocity': 'discvel',
|
||||||
|
'sciencechannel': 'discsci',
|
||||||
|
'investigationdiscovery': 'invdisc',
|
||||||
|
'animalplanet': 'aniplan',
|
||||||
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
domain, video_id = re.match(self._VALID_URL, url).groups()
|
domain, video_id = re.match(self._VALID_URL, url).groups()
|
||||||
if domain == 'thecomedynetwork':
|
domain = domain.split('.')[0]
|
||||||
domain = 'comedy'
|
|
||||||
return {
|
return {
|
||||||
'_type': 'url_transparent',
|
'_type': 'url_transparent',
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': '9c9media:%s_web:%s' % (domain, video_id),
|
'url': '9c9media:%s_web:%s' % (self._DOMAINS.get(domain, domain), video_id),
|
||||||
'ie_key': 'NineCNineMedia',
|
'ie_key': 'NineCNineMedia',
|
||||||
}
|
}
|
@ -93,6 +93,7 @@
|
|||||||
)
|
)
|
||||||
from .beeg import BeegIE
|
from .beeg import BeegIE
|
||||||
from .behindkink import BehindKinkIE
|
from .behindkink import BehindKinkIE
|
||||||
|
from .bellmedia import BellMediaIE
|
||||||
from .beatportpro import BeatportProIE
|
from .beatportpro import BeatportProIE
|
||||||
from .bet import BetIE
|
from .bet import BetIE
|
||||||
from .bigflix import BigflixIE
|
from .bigflix import BigflixIE
|
||||||
@ -195,7 +196,6 @@
|
|||||||
)
|
)
|
||||||
from .cspan import CSpanIE
|
from .cspan import CSpanIE
|
||||||
from .ctsnews import CtsNewsIE
|
from .ctsnews import CtsNewsIE
|
||||||
from .ctv import CTVIE
|
|
||||||
from .ctvnews import CTVNewsIE
|
from .ctvnews import CTVNewsIE
|
||||||
from .cultureunplugged import CultureUnpluggedIE
|
from .cultureunplugged import CultureUnpluggedIE
|
||||||
from .curiositystream import (
|
from .curiositystream import (
|
||||||
|
Loading…
Reference in New Issue
Block a user