2019-04-14 13:18:16 +01:00
|
|
|
|
# coding: utf-8
|
2015-02-15 04:57:52 +06:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
2020-10-03 17:23:08 -04:00
|
|
|
|
import json
|
2016-04-01 09:56:18 +01:00
|
|
|
|
import re
|
|
|
|
|
|
2016-07-02 21:20:59 +01:00
|
|
|
|
from .theplatform import ThePlatformIE
|
2016-04-01 09:56:18 +01:00
|
|
|
|
from ..utils import (
|
2019-04-14 11:46:33 +01:00
|
|
|
|
extract_attributes,
|
|
|
|
|
ExtractorError,
|
|
|
|
|
int_or_none,
|
2016-04-01 09:56:18 +01:00
|
|
|
|
smuggle_url,
|
|
|
|
|
update_url_query,
|
|
|
|
|
)
|
2016-06-29 15:49:17 +01:00
|
|
|
|
from ..compat import (
|
|
|
|
|
compat_urlparse,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2016-07-02 21:20:59 +01:00
|
|
|
|
class AENetworksBaseIE(ThePlatformIE):
|
|
|
|
|
_THEPLATFORM_KEY = 'crazyjava'
|
|
|
|
|
_THEPLATFORM_SECRET = 's3cr3t'
|
2015-02-15 04:57:52 +06:00
|
|
|
|
|
2020-10-03 17:23:08 -04:00
|
|
|
|
def _parse_theplatform_metadata(self, info):
|
|
|
|
|
metadata = super()._parse_theplatform_metadata(info)
|
|
|
|
|
metadata['season_number'] = int(info.get('AETN$season'))
|
|
|
|
|
metadata['episode_number'] = int(info.get('AETN$episode'))
|
|
|
|
|
metadata['series'] = info.get('AETN$seriesNameGlobal')
|
|
|
|
|
return metadata
|
|
|
|
|
|
2019-04-14 11:46:33 +01:00
|
|
|
|
def _extract_aen_smil(self, smil_url, video_id, auth=None):
|
|
|
|
|
query = {'mbr': 'true'}
|
|
|
|
|
if auth:
|
|
|
|
|
query['auth'] = auth
|
|
|
|
|
TP_SMIL_QUERY = [{
|
|
|
|
|
'assetTypes': 'high_video_ak',
|
|
|
|
|
'switch': 'hls_high_ak'
|
|
|
|
|
}, {
|
|
|
|
|
'assetTypes': 'high_video_s3'
|
|
|
|
|
}, {
|
|
|
|
|
'assetTypes': 'high_video_s3',
|
|
|
|
|
'switch': 'hls_ingest_fastly'
|
|
|
|
|
}]
|
|
|
|
|
formats = []
|
|
|
|
|
subtitles = {}
|
|
|
|
|
last_e = None
|
|
|
|
|
for q in TP_SMIL_QUERY:
|
|
|
|
|
q.update(query)
|
|
|
|
|
m_url = update_url_query(smil_url, q)
|
|
|
|
|
m_url = self._sign_url(m_url, self._THEPLATFORM_KEY, self._THEPLATFORM_SECRET)
|
|
|
|
|
try:
|
|
|
|
|
tp_formats, tp_subtitles = self._extract_theplatform_smil(
|
|
|
|
|
m_url, video_id, 'Downloading %s SMIL data' % (q.get('switch') or q['assetTypes']))
|
|
|
|
|
except ExtractorError as e:
|
|
|
|
|
last_e = e
|
|
|
|
|
continue
|
|
|
|
|
formats.extend(tp_formats)
|
|
|
|
|
subtitles = self._merge_subtitles(subtitles, tp_subtitles)
|
|
|
|
|
if last_e and not formats:
|
|
|
|
|
raise last_e
|
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
return {
|
|
|
|
|
'id': video_id,
|
|
|
|
|
'formats': formats,
|
|
|
|
|
'subtitles': subtitles,
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-15 04:57:52 +06:00
|
|
|
|
|
2016-06-29 15:49:17 +01:00
|
|
|
|
class AENetworksIE(AENetworksBaseIE):
|
2016-01-17 03:02:45 +06:00
|
|
|
|
IE_NAME = 'aenetworks'
|
2018-12-09 10:04:00 +01:00
|
|
|
|
IE_DESC = 'A+E Networks: A&E, Lifetime, History.com, FYI Network and History Vault'
|
2017-04-13 23:39:55 +07:00
|
|
|
|
_VALID_URL = r'''(?x)
|
|
|
|
|
https?://
|
2020-10-03 17:23:08 -04:00
|
|
|
|
(?:(?P<subdomain>www|play)\.)?
|
2017-04-13 23:39:55 +07:00
|
|
|
|
(?P<domain>
|
2018-12-09 10:04:00 +01:00
|
|
|
|
(?:history(?:vault)?|aetv|mylifetime|lifetimemovieclub)\.com|
|
2017-04-13 23:39:55 +07:00
|
|
|
|
fyi\.tv
|
|
|
|
|
)/
|
|
|
|
|
(?:
|
|
|
|
|
shows/(?P<show_path>[^/]+(?:/[^/]+){0,2})|
|
|
|
|
|
movies/(?P<movie_display_id>[^/]+)(?:/full-movie)?|
|
2019-04-14 11:46:33 +01:00
|
|
|
|
specials/(?P<special_display_id>[^/]+)/(?:full-special|preview-)|
|
2018-12-09 10:04:00 +01:00
|
|
|
|
collections/[^/]+/(?P<collection_display_id>[^/]+)
|
2017-04-13 23:39:55 +07:00
|
|
|
|
)
|
|
|
|
|
'''
|
2020-10-03 17:23:08 -04:00
|
|
|
|
_GRAPHQL_QUERY = """
|
|
|
|
|
fragment video on Video {
|
|
|
|
|
publicUrl
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
query getUserVideo($videoId: ID!) {
|
|
|
|
|
video(id: $videoId) {
|
|
|
|
|
...video
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
"""
|
|
|
|
|
|
2015-02-15 04:57:52 +06:00
|
|
|
|
_TESTS = [{
|
2016-01-15 15:16:57 +01:00
|
|
|
|
'url': 'http://www.history.com/shows/mountain-men/season-1/episode-1',
|
|
|
|
|
'info_dict': {
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'id': '22253814',
|
2016-01-15 15:16:57 +01:00
|
|
|
|
'ext': 'mp4',
|
2020-10-03 17:23:08 -04:00
|
|
|
|
'series': 'Mountain Men',
|
|
|
|
|
'season_number': 1,
|
|
|
|
|
'episode_number': 1,
|
2019-04-14 11:46:33 +01:00
|
|
|
|
'title': 'Winter is Coming',
|
2016-01-16 20:56:53 +08:00
|
|
|
|
'description': 'md5:641f424b7a19d8e24f26dea22cf59d74',
|
2016-04-01 18:06:11 +01:00
|
|
|
|
'timestamp': 1338306241,
|
|
|
|
|
'upload_date': '20120529',
|
|
|
|
|
'uploader': 'AENE-NEW',
|
2016-01-15 15:16:57 +01:00
|
|
|
|
},
|
2019-04-14 11:46:33 +01:00
|
|
|
|
'params': {
|
|
|
|
|
# m3u8 download
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
},
|
2015-02-15 04:57:52 +06:00
|
|
|
|
'add_ie': ['ThePlatform'],
|
2020-10-03 17:23:08 -04:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://play.history.com/shows/mountain-men/season-1/episode-1',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '22253814',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'series': 'Mountain Men',
|
|
|
|
|
'season_number': 1,
|
|
|
|
|
'episode_number': 1,
|
|
|
|
|
'title': 'Winter Is Coming',
|
|
|
|
|
'description': 'md5:a40e370925074260b1c8a633c632c63a',
|
|
|
|
|
'timestamp': 1338306241,
|
|
|
|
|
'upload_date': '20120529',
|
|
|
|
|
'uploader': 'AENE-NEW',
|
|
|
|
|
},
|
|
|
|
|
'params': {
|
|
|
|
|
# m3u8 download
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
},
|
|
|
|
|
'add_ie': ['ThePlatform'],
|
2016-01-15 16:18:07 +01:00
|
|
|
|
}, {
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'url': 'http://www.history.com/shows/ancient-aliens/season-1',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '71889446852',
|
2020-10-03 17:23:08 -04:00
|
|
|
|
'title': 'Ancient Aliens'
|
2016-06-29 15:49:17 +01:00
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 5,
|
|
|
|
|
}, {
|
2020-10-03 17:23:08 -04:00
|
|
|
|
'url': 'http://www.mylifetime.com/shows/marrying-millions',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'SERIES6093',
|
|
|
|
|
'title': 'Marrying Millions',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 1,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.mylifetime.com/shows/marrying-millions/season-1',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '269343782619',
|
|
|
|
|
'title': 'Marrying Millions',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://play.mylifetime.com/shows/marrying-millions/season-1',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'SERIES6093',
|
|
|
|
|
'title': 'Marrying Millions',
|
|
|
|
|
},
|
|
|
|
|
'playlist_mincount': 10,
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://play.mylifetime.com/shows/marrying-millions',
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'info_dict': {
|
2020-10-03 17:23:08 -04:00
|
|
|
|
'id': 'SERIES6093',
|
|
|
|
|
'title': 'Marrying Millions',
|
2016-06-29 15:49:17 +01:00
|
|
|
|
},
|
2020-10-03 17:23:08 -04:00
|
|
|
|
'playlist_mincount': 11,
|
2016-06-29 15:49:17 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.aetv.com/shows/duck-dynasty/season-9/episode-1',
|
2016-01-15 16:18:07 +01:00
|
|
|
|
'only_matching': True
|
|
|
|
|
}, {
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'url': 'http://www.fyi.tv/shows/tiny-house-nation/season-1/episode-8',
|
2016-01-15 16:18:07 +01:00
|
|
|
|
'only_matching': True
|
|
|
|
|
}, {
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'url': 'http://www.mylifetime.com/shows/project-runway-junior/season-1/episode-6',
|
2016-01-15 16:18:07 +01:00
|
|
|
|
'only_matching': True
|
2016-06-29 16:55:17 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.mylifetime.com/movies/center-stage-on-pointe/full-movie',
|
|
|
|
|
'only_matching': True
|
2017-02-12 17:48:11 +05:30
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.lifetimemovieclub.com/movies/a-killer-among-us',
|
|
|
|
|
'only_matching': True
|
2017-04-13 23:39:55 +07:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.history.com/specials/sniper-into-the-kill-zone/full-special',
|
|
|
|
|
'only_matching': True
|
2018-12-09 10:04:00 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.historyvault.com/collections/america-the-story-of-us/westward',
|
|
|
|
|
'only_matching': True
|
2019-04-14 11:46:33 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://www.aetv.com/specials/hunting-jonbenets-killer-the-untold-story/preview-hunting-jonbenets-killer-the-untold-story',
|
|
|
|
|
'only_matching': True
|
2015-02-15 04:57:52 +06:00
|
|
|
|
}]
|
2016-07-02 21:20:59 +01:00
|
|
|
|
_DOMAIN_TO_REQUESTOR_ID = {
|
|
|
|
|
'history.com': 'HISTORY',
|
|
|
|
|
'aetv.com': 'AETV',
|
|
|
|
|
'mylifetime.com': 'LIFETIME',
|
2017-02-12 17:48:11 +05:30
|
|
|
|
'lifetimemovieclub.com': 'LIFETIMEMOVIECLUB',
|
2016-07-02 21:20:59 +01:00
|
|
|
|
'fyi.tv': 'FYI',
|
|
|
|
|
}
|
2015-02-15 04:57:52 +06:00
|
|
|
|
|
2020-10-03 17:23:08 -04:00
|
|
|
|
def _extract_playlist(self, url, webpage, display_id, subdomain, url_parts):
|
|
|
|
|
# The "play" is pretty distinct from the normal sites, however, it contains all the data we need in a JSON blob.
|
|
|
|
|
if subdomain == 'play':
|
|
|
|
|
series_id = self._search_regex(r'showid/(SERIES[0-9]+)', webpage, 'series id')
|
|
|
|
|
season_num = int_or_none(self._search_regex(r'/season-([0-9]+)/?', url, 'season number', fatal=False, default=None))
|
|
|
|
|
show_data = self._parse_json(
|
|
|
|
|
self._search_regex(r'(?s)<script[^>]+id="__NEXT_DATA__"[^>]*>(.+?)</script', webpage, 'show data'),
|
|
|
|
|
series_id, fatal=True)
|
|
|
|
|
if show_data:
|
|
|
|
|
apolloState = show_data.get('props', {}).get('apolloState', {})
|
|
|
|
|
entries = []
|
|
|
|
|
for key, episode in apolloState.items():
|
|
|
|
|
if not key.startswith('Episode:') or series_id != episode.get('seriesId'):
|
|
|
|
|
continue
|
|
|
|
|
# If a season number was specified in the URL, filter out any episodes that don't match.
|
|
|
|
|
if season_num and season_num != episode.get('tvSeasonNumber'):
|
|
|
|
|
continue
|
|
|
|
|
episode_url = compat_urlparse.urljoin(url, episode.get('canonical'))
|
|
|
|
|
entries.append(self.url_result(episode_url, 'AENetworks', episode.get('id'), episode.get('title')))
|
|
|
|
|
series_name = apolloState.get('Series:%s' % series_id, {}).get('title')
|
|
|
|
|
return self.playlist_result(entries, series_id, series_name)
|
|
|
|
|
else:
|
|
|
|
|
series_title = self._html_search_meta('aetn:SeriesTitle', webpage)
|
2016-06-29 16:55:17 +01:00
|
|
|
|
url_parts_len = len(url_parts)
|
|
|
|
|
if url_parts_len == 1:
|
|
|
|
|
entries = []
|
2020-10-03 17:23:08 -04:00
|
|
|
|
for season_url_path in re.findall(r'(?s)<a[^>]+href="(/shows/%s/season-\d+)"' % url_parts[0], webpage):
|
2016-06-29 16:55:17 +01:00
|
|
|
|
entries.append(self.url_result(
|
|
|
|
|
compat_urlparse.urljoin(url, season_url_path), 'AENetworks'))
|
2017-04-28 12:04:56 +01:00
|
|
|
|
if entries:
|
|
|
|
|
return self.playlist_result(
|
2020-10-03 17:23:08 -04:00
|
|
|
|
entries, self._html_search_meta('aetn:SeriesId', webpage), series_title)
|
|
|
|
|
raise ExtractorError('Failed to extract seasons for show: %s' % url_parts[0])
|
2017-04-28 12:04:56 +01:00
|
|
|
|
if url_parts_len == 2:
|
2016-06-29 16:55:17 +01:00
|
|
|
|
entries = []
|
2020-10-03 17:23:08 -04:00
|
|
|
|
for episode_item in re.findall(r'(?s)<[^>]+data-episodetype[^>]*>', webpage):
|
2016-06-29 16:55:17 +01:00
|
|
|
|
episode_attributes = extract_attributes(episode_item)
|
|
|
|
|
episode_url = compat_urlparse.urljoin(
|
|
|
|
|
url, episode_attributes['data-canonical'])
|
2020-10-03 17:23:08 -04:00
|
|
|
|
video_id = episode_attributes.get('data-videoid') or episode_attributes.get('data-video-id')
|
|
|
|
|
episode_title = episode_attributes.get('aria-label')
|
|
|
|
|
entries.append(self.url_result(episode_url, 'AENetworks', video_id, episode_title))
|
2016-06-29 16:55:17 +01:00
|
|
|
|
return self.playlist_result(
|
2020-10-03 17:23:08 -04:00
|
|
|
|
entries, self._html_search_meta('aetn:SeasonId', webpage), series_title)
|
|
|
|
|
raise ExtractorError('Failed to extract playlist', video_id=display_id)
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
subdomain, domain, show_path, movie_display_id, special_display_id, collection_display_id = re.match(self._VALID_URL, url).groups()
|
|
|
|
|
display_id = show_path or movie_display_id or special_display_id or collection_display_id
|
|
|
|
|
webpage = self._download_webpage(url, display_id, headers=self.geo_verification_headers())
|
|
|
|
|
|
|
|
|
|
if show_path:
|
|
|
|
|
url_parts = show_path.split('/')
|
|
|
|
|
# If there's only the show name and/or season number then we'll need to extract a playlist.
|
|
|
|
|
if len(url_parts) < 3:
|
|
|
|
|
return self._extract_playlist(url, webpage, display_id, subdomain, url_parts)
|
|
|
|
|
|
|
|
|
|
requestor_id = self._DOMAIN_TO_REQUESTOR_ID[domain]
|
|
|
|
|
video_id = self._html_search_meta(['videoId', 'aetn:VideoID'], webpage)
|
|
|
|
|
# Make a GraphQL query to get the episode URL as they no longer directly embed it in the response webpage.
|
|
|
|
|
video_data = self._download_json(
|
|
|
|
|
'https://yoga.appsvcs.aetnd.com/graphql?brand=%s&mode=live&platform=web' % (requestor_id.lower()), video_id,
|
|
|
|
|
data=json.dumps(
|
|
|
|
|
{
|
|
|
|
|
'operationName': 'getUserVideo',
|
|
|
|
|
'variables': {'videoId': video_id},
|
|
|
|
|
'query': self._GRAPHQL_QUERY,
|
|
|
|
|
}).encode('utf-8'),
|
|
|
|
|
headers={'Content-Type': 'application/json'})
|
|
|
|
|
media_url = video_data.get('data', {}).get('video', {}).get('publicUrl')
|
|
|
|
|
if not media_url:
|
|
|
|
|
raise ExtractorError('Failed to extract media URL', video_id=video_id)
|
2016-07-02 21:20:59 +01:00
|
|
|
|
theplatform_metadata = self._download_theplatform_metadata(self._search_regex(
|
2017-10-09 23:50:53 +07:00
|
|
|
|
r'https?://link\.theplatform\.com/s/([^?]+)', media_url, 'theplatform_path'), video_id)
|
2016-07-02 21:20:59 +01:00
|
|
|
|
info = self._parse_theplatform_metadata(theplatform_metadata)
|
2019-04-14 11:46:33 +01:00
|
|
|
|
auth = None
|
2016-07-02 21:20:59 +01:00
|
|
|
|
if theplatform_metadata.get('AETN$isBehindWall'):
|
2016-08-14 17:55:56 +01:00
|
|
|
|
resource = self._get_mvpd_resource(
|
|
|
|
|
requestor_id, theplatform_metadata['title'],
|
|
|
|
|
theplatform_metadata.get('AETN$PPL_pplProgramId') or theplatform_metadata.get('AETN$PPL_pplProgramId_OLD'),
|
|
|
|
|
theplatform_metadata['ratings'][0]['rating'])
|
2019-04-14 11:46:33 +01:00
|
|
|
|
auth = self._extract_mvpd_auth(
|
2016-07-02 21:20:59 +01:00
|
|
|
|
url, video_id, requestor_id, resource)
|
2020-10-03 17:23:08 -04:00
|
|
|
|
# JSON-LD data isn't present on the play subdomain webpages.
|
|
|
|
|
if subdomain != 'play':
|
|
|
|
|
info.update(self._search_json_ld(webpage, video_id, fatal=False))
|
2019-04-14 11:46:33 +01:00
|
|
|
|
info.update(self._extract_aen_smil(media_url, video_id, auth))
|
2016-06-29 16:55:17 +01:00
|
|
|
|
return info
|
2015-02-15 04:57:52 +06:00
|
|
|
|
|
|
|
|
|
|
2016-06-29 15:49:17 +01:00
|
|
|
|
class HistoryTopicIE(AENetworksBaseIE):
|
|
|
|
|
IE_NAME = 'history:topic'
|
|
|
|
|
IE_DESC = 'History.com Topic'
|
2019-04-14 11:46:33 +01:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?history\.com/topics/[^/]+/(?P<id>[\w+-]+?)-video'
|
2016-06-29 15:49:17 +01:00
|
|
|
|
_TESTS = [{
|
2019-04-14 11:46:33 +01:00
|
|
|
|
'url': 'https://www.history.com/topics/valentines-day/history-of-valentines-day-video',
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '40700995724',
|
|
|
|
|
'ext': 'mp4',
|
2019-04-14 11:46:33 +01:00
|
|
|
|
'title': "History of Valentine’s Day",
|
2016-06-29 15:49:17 +01:00
|
|
|
|
'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7',
|
|
|
|
|
'timestamp': 1375819729,
|
|
|
|
|
'upload_date': '20130806',
|
|
|
|
|
},
|
|
|
|
|
'params': {
|
|
|
|
|
# m3u8 download
|
|
|
|
|
'skip_download': True,
|
|
|
|
|
},
|
|
|
|
|
'add_ie': ['ThePlatform'],
|
|
|
|
|
}]
|
|
|
|
|
|
2016-07-02 21:20:59 +01:00
|
|
|
|
def theplatform_url_result(self, theplatform_url, video_id, query):
|
|
|
|
|
return {
|
|
|
|
|
'_type': 'url_transparent',
|
|
|
|
|
'id': video_id,
|
|
|
|
|
'url': smuggle_url(
|
|
|
|
|
update_url_query(theplatform_url, query),
|
|
|
|
|
{
|
|
|
|
|
'sig': {
|
|
|
|
|
'key': self._THEPLATFORM_KEY,
|
|
|
|
|
'secret': self._THEPLATFORM_SECRET,
|
|
|
|
|
},
|
|
|
|
|
'force_smil_url': True
|
|
|
|
|
}),
|
|
|
|
|
'ie_key': 'ThePlatform',
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-29 15:49:17 +01:00
|
|
|
|
def _real_extract(self, url):
|
2019-04-14 11:46:33 +01:00
|
|
|
|
display_id = self._match_id(url)
|
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
|
video_id = self._search_regex(
|
|
|
|
|
r'<phoenix-iframe[^>]+src="[^"]+\btpid=(\d+)', webpage, 'tpid')
|
|
|
|
|
result = self._download_json(
|
|
|
|
|
'https://feeds.video.aetnd.com/api/v2/history/videos',
|
|
|
|
|
video_id, query={'filter[id]': video_id})['results'][0]
|
|
|
|
|
title = result['title']
|
|
|
|
|
info = self._extract_aen_smil(result['publicUrl'], video_id)
|
|
|
|
|
info.update({
|
|
|
|
|
'title': title,
|
|
|
|
|
'description': result.get('description'),
|
|
|
|
|
'duration': int_or_none(result.get('duration')),
|
|
|
|
|
'timestamp': int_or_none(result.get('added'), 1000),
|
|
|
|
|
})
|
|
|
|
|
return info
|