]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/aenetworks.py
6adb6d824c00ec733afaf1bbe1b243f7d623b647
1 from __future__
import unicode_literals
5 from .theplatform
import ThePlatformIE
11 get_element_by_attribute
,
13 from ..compat
import (
18 class AENetworksBaseIE(ThePlatformIE
):
19 _THEPLATFORM_KEY
= 'crazyjava'
20 _THEPLATFORM_SECRET
= 's3cr3t'
23 class AENetworksIE(AENetworksBaseIE
):
24 IE_NAME
= 'aenetworks'
25 IE_DESC
= 'A+E Networks: A&E, Lifetime, History.com, FYI Network'
26 _VALID_URL
= r
'https?://(?:www\.)?(?P<domain>(?:history|aetv|mylifetime)\.com|fyi\.tv)/(?:shows/(?P<show_path>[^/]+(?:/[^/]+){0,2})|movies/(?P<movie_display_id>[^/]+)/full-movie)'
28 'url': 'http://www.history.com/shows/mountain-men/season-1/episode-1',
29 'md5': '8ff93eb073449f151d6b90c0ae1ef0c7',
33 'title': 'Winter Is Coming',
34 'description': 'md5:641f424b7a19d8e24f26dea22cf59d74',
35 'timestamp': 1338306241,
36 'upload_date': '20120529',
37 'uploader': 'AENE-NEW',
39 'add_ie': ['ThePlatform'],
41 'url': 'http://www.history.com/shows/ancient-aliens/season-1',
45 'playlist_mincount': 5,
47 'url': 'http://www.mylifetime.com/shows/atlanta-plastic',
50 'title': 'Atlanta Plastic',
52 'playlist_mincount': 2,
54 'url': 'http://www.aetv.com/shows/duck-dynasty/season-9/episode-1',
57 'url': 'http://www.fyi.tv/shows/tiny-house-nation/season-1/episode-8',
60 'url': 'http://www.mylifetime.com/shows/project-runway-junior/season-1/episode-6',
63 'url': 'http://www.mylifetime.com/movies/center-stage-on-pointe/full-movie',
66 _DOMAIN_TO_REQUESTOR_ID
= {
67 'history.com': 'HISTORY',
69 'mylifetime.com': 'LIFETIME',
73 def _real_extract(self
, url
):
74 domain
, show_path
, movie_display_id
= re
.match(self
._VALID
_URL
, url
).groups()
75 display_id
= show_path
or movie_display_id
76 webpage
= self
._download
_webpage
(url
, display_id
)
78 url_parts
= show_path
.split('/')
79 url_parts_len
= len(url_parts
)
80 if url_parts_len
== 1:
82 for season_url_path
in re
.findall(r
'(?s)<li[^>]+data-href="(/shows/%s/season-\d+)"' % url_parts
[0], webpage
):
83 entries
.append(self
.url_result(
84 compat_urlparse
.urljoin(url
, season_url_path
), 'AENetworks'))
85 return self
.playlist_result(
86 entries
, self
._html
_search
_meta
('aetn:SeriesId', webpage
),
87 self
._html
_search
_meta
('aetn:SeriesTitle', webpage
))
88 elif url_parts_len
== 2:
90 for episode_item
in re
.findall(r
'(?s)<div[^>]+class="[^"]*episode-item[^"]*"[^>]*>', webpage
):
91 episode_attributes
= extract_attributes(episode_item
)
92 episode_url
= compat_urlparse
.urljoin(
93 url
, episode_attributes
['data-canonical'])
94 entries
.append(self
.url_result(
95 episode_url
, 'AENetworks',
96 episode_attributes
['data-videoid']))
97 return self
.playlist_result(
98 entries
, self
._html
_search
_meta
('aetn:SeasonId', webpage
))
102 'assetTypes': 'medium_video_s3'
104 video_id
= self
._html
_search
_meta
('aetn:VideoID', webpage
)
105 media_url
= self
._search
_regex
(
106 r
"media_url\s*=\s*'([^']+)'", webpage
, 'video url')
107 theplatform_metadata
= self
._download
_theplatform
_metadata
(self
._search
_regex
(
108 r
'https?://link.theplatform.com/s/([^?]+)', media_url
, 'theplatform_path'), video_id
)
109 info
= self
._parse
_theplatform
_metadata
(theplatform_metadata
)
110 if theplatform_metadata
.get('AETN$isBehindWall'):
111 requestor_id
= self
._DOMAIN
_TO
_REQUESTOR
_ID
[domain
]
112 resource
= self
._get
_mvpd
_resource
(
113 requestor_id
, theplatform_metadata
['title'],
114 theplatform_metadata
.get('AETN$PPL_pplProgramId') or theplatform_metadata
.get('AETN$PPL_pplProgramId_OLD'),
115 theplatform_metadata
['ratings'][0]['rating'])
116 query
['auth'] = self
._extract
_mvpd
_auth
(
117 url
, video_id
, requestor_id
, resource
)
118 info
.update(self
._search
_json
_ld
(webpage
, video_id
, fatal
=False))
119 media_url
= update_url_query(media_url
, query
)
120 media_url
= self
._sign
_url
(media_url
, self
._THEPLATFORM
_KEY
, self
._THEPLATFORM
_SECRET
)
121 formats
, subtitles
= self
._extract
_theplatform
_smil
(media_url
, video_id
)
122 self
._sort
_formats
(formats
)
126 'subtitles': subtitles
,
131 class HistoryTopicIE(AENetworksBaseIE
):
132 IE_NAME
= 'history:topic'
133 IE_DESC
= 'History.com Topic'
134 _VALID_URL
= r
'https?://(?:www\.)?history\.com/topics/(?:[^/]+/)?(?P<topic_id>[^/]+)(?:/[^/]+(?:/(?P<video_display_id>[^/?#]+))?)?'
136 'url': 'http://www.history.com/topics/valentines-day/history-of-valentines-day/videos/bet-you-didnt-know-valentines-day?m=528e394da93ae&s=undefined&f=1&free=false',
140 'title': "Bet You Didn't Know: Valentine's Day",
141 'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7',
142 'timestamp': 1375819729,
143 'upload_date': '20130806',
144 'uploader': 'AENE-NEW',
148 'skip_download': True,
150 'add_ie': ['ThePlatform'],
152 'url': 'http://www.history.com/topics/world-war-i/world-war-i-history/videos',
155 'id': 'world-war-i-history',
156 'title': 'World War I History',
158 'playlist_mincount': 24,
160 'url': 'http://www.history.com/topics/world-war-i-history/videos',
161 'only_matching': True,
163 'url': 'http://www.history.com/topics/world-war-i/world-war-i-history',
164 'only_matching': True,
166 'url': 'http://www.history.com/topics/world-war-i/world-war-i-history/speeches',
167 'only_matching': True,
170 def theplatform_url_result(self
, theplatform_url
, video_id
, query
):
172 '_type': 'url_transparent',
175 update_url_query(theplatform_url
, query
),
178 'key': self
._THEPLATFORM
_KEY
,
179 'secret': self
._THEPLATFORM
_SECRET
,
181 'force_smil_url': True
183 'ie_key': 'ThePlatform',
186 def _real_extract(self
, url
):
187 topic_id
, video_display_id
= re
.match(self
._VALID
_URL
, url
).groups()
189 webpage
= self
._download
_webpage
(url
, video_display_id
)
190 release_url
, video_id
= re
.search(r
"_videoPlayer.play\('([^']+)'\s*,\s*'[^']+'\s*,\s*'(\d+)'\)", webpage
).groups()
191 release_url
= unescapeHTML(release_url
)
193 return self
.theplatform_url_result(
194 release_url
, video_id
, {
199 webpage
= self
._download
_webpage
(url
, topic_id
)
201 for episode_item
in re
.findall(r
'<a.+?data-release-url="[^"]+"[^>]*>', webpage
):
202 video_attributes
= extract_attributes(episode_item
)
203 entries
.append(self
.theplatform_url_result(
204 video_attributes
['data-release-url'], video_attributes
['data-id'], {
208 return self
.playlist_result(entries
, topic_id
, get_element_by_attribute('class', 'show-title', webpage
))