]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/corus.py
2 from __future__
import unicode_literals
6 from .theplatform
import ThePlatformFeedIE
7 from ..utils
import int_or_none
10 class CorusIE(ThePlatformFeedIE
):
15 (?:globaltv|etcanada)\.com|
16 (?:hgtv|foodnetwork|slice|history|showcase|bigbrothercanada)\.ca
18 /(?:video/(?:[^/]+/)?|(?:[^/]+/)+(?:videos/[a-z0-9-]+-|video\.html\?.*?\bv=))
22 'url': 'http://www.hgtv.ca/shows/bryan-inc/videos/movie-night-popcorn-with-bryan-870923331648/',
23 'md5': '05dcbca777bf1e58c2acbb57168ad3a6',
27 'title': 'Movie Night Popcorn with Bryan',
28 'description': 'Bryan whips up homemade popcorn, the old fashion way for Jojo and Lincoln.',
29 'uploader': 'SHWM-NEW',
30 'upload_date': '20170206',
31 'timestamp': 1486392197,
34 'url': 'http://www.foodnetwork.ca/shows/chopped/video/episode/chocolate-obsession/video.html?v=872683587753',
35 'only_matching': True,
37 'url': 'http://etcanada.com/video/873675331955/meet-the-survivor-game-changers-castaways-part-2/',
38 'only_matching': True,
40 'url': 'http://www.history.ca/the-world-without-canada/video/full-episodes/natural-resources/video.html?v=955054659646#video',
41 'only_matching': True,
43 'url': 'http://www.showcase.ca/eyewitness/video/eyewitness++106/video.html?v=955070531919&p=1&s=da#video',
44 'only_matching': True,
46 'url': 'http://www.bigbrothercanada.ca/video/1457812035894/',
49 'url': 'https://www.bigbrothercanada.ca/video/big-brother-canada-704/1457812035894/',
55 'feed_id': 'ChQqrem0lNUp',
56 'account_id': 2269680845,
59 'feed_id': 'ChQqrem0lNUp',
60 'account_id': 2269680845,
63 'feed_id': 'L0BMHXi2no43',
64 'account_id': 2414428465,
67 'feed_id': 'ukK8o58zbRmJ',
68 'account_id': 2414429569,
71 'feed_id': '5tUJLgV2YNJ5',
72 'account_id': 2414427935,
75 'feed_id': 'tQFx_TyyEq4J',
76 'account_id': 2369613659,
79 'feed_id': '9H6qyshBZU3E',
80 'account_id': 2414426607,
83 'feed_id': 'ChQqrem0lNUp',
84 'account_id': 2269680845,
88 def _real_extract(self
, url
):
89 domain
, video_id
= re
.match(self
._VALID
_URL
, url
).groups()
90 feed_info
= self
._TP
_FEEDS
[domain
.split('.')[0]]
91 return self
._extract
_feed
_info
('dtjsEC', feed_info
['feed_id'], 'byId=' + video_id
, video_id
, lambda e
: {
92 'episode_number': int_or_none(e
.get('pl1$episode')),
93 'season_number': int_or_none(e
.get('pl1$season')),
94 'series': e
.get('pl1$show'),
99 'DesktopHLS Default': {
105 }, feed_info
['account_id'])