Improve extraction
* use User-Agent Mozilla/5.0 * use Referer for manifests and downloads * finalise review comments
This commit is contained in:
parent
3ee378c099
commit
0235e627b9
@ -6,9 +6,12 @@ from ..compat import (
|
|||||||
compat_str,
|
compat_str,
|
||||||
)
|
)
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
clean_html,
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
|
get_element_by_class,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
str_or_none,
|
str_or_none,
|
||||||
|
strip_or_none,
|
||||||
try_get,
|
try_get,
|
||||||
urlencode_postdata,
|
urlencode_postdata,
|
||||||
urljoin,
|
urljoin,
|
||||||
@ -100,38 +103,47 @@ class PlatziIE(PlatziBaseIE):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
lecture_id = self._match_id(url)
|
lecture_id = self._match_id(url)
|
||||||
|
|
||||||
webpage = self._download_webpage(url, lecture_id)
|
headers = {'User-Agent': 'Mozilla/5.0'}
|
||||||
|
webpage = self._download_webpage(url, lecture_id, headers=headers)
|
||||||
data_preloaded_state = self._parse_json(
|
data_preloaded_state = self._parse_json(
|
||||||
self._search_regex(
|
self._search_regex(
|
||||||
(r'window\s*.\s*__PRELOADED_STATE__\s*=\s*({.*?});?\s*</script'), webpage, 'client data'),
|
(r'window\s*.\s*__PRELOADED_STATE__\s*=\s*({.*?});?\s*</script'), webpage, 'client data'),
|
||||||
lecture_id)
|
lecture_id)
|
||||||
|
|
||||||
video_player = try_get(data_preloaded_state, lambda x: x['videoPlayer'], dict)
|
video_player = try_get(data_preloaded_state, lambda x: x['videoPlayer'], dict)
|
||||||
title = video_player.get('name', '')
|
title = strip_or_none(video_player.get('name')) or self._og_search_title(webpage)
|
||||||
duration = video_player.get('duration', '')
|
servers = try_get(video_player, lambda x: x['video']['servers'], dict) or {}
|
||||||
servers = video_player.get('video', '').get('servers', {})
|
|
||||||
formats = []
|
formats = []
|
||||||
for server in servers.keys():
|
headers['Referer'] = url
|
||||||
server_json = servers.get(server, {})
|
extractions = {
|
||||||
if 'hls' in server_json.keys():
|
'hls': lambda x: formats.extend(self._extract_m3u8_formats(
|
||||||
formats.extend(self._extract_m3u8_formats(
|
server_json[x], lecture_id, 'mp4',
|
||||||
server_json['hls'], lecture_id, 'mp4',
|
entry_protocol='m3u8_native', m3u8_id='hls',
|
||||||
entry_protocol='m3u8_native', m3u8_id='hls',
|
note='Downloading %s m3u8 information' % (server_json.get('id', x), ),
|
||||||
note='Downloading %s m3u8 information' % server_json.get('id', ''),
|
headers=headers, fatal=False)),
|
||||||
fatal=False))
|
'dash': lambda x: formats.extend(self._extract_mpd_formats(
|
||||||
elif 'dash' in server_json.keys():
|
server_json[x], lecture_id, mpd_id='dash',
|
||||||
formats.extend(self._extract_mpd_formats(
|
note='Downloading %s MPD manifest' % (server_json.get('id', x), ),
|
||||||
server_json['dash'], lecture_id, mpd_id='dash',
|
headers=headers, fatal=False)),
|
||||||
note='Downloading %s MPD manifest' % server_json.get('id', ''),
|
}
|
||||||
fatal=False))
|
for server, server_json in servers.items():
|
||||||
|
if not isinstance(server_json, dict):
|
||||||
|
continue
|
||||||
|
for fmt in server_json.keys():
|
||||||
|
extraction = extractions.get(fmt)
|
||||||
|
if callable(extraction):
|
||||||
|
extraction(fmt)
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
for f in formats:
|
||||||
duration = int_or_none(duration, invscale=60)
|
f.setdefault('http_headers', {})['Referer'] = headers['Referer']
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': lecture_id,
|
'id': lecture_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'duration': duration,
|
'description': self._og_search_description(webpage),
|
||||||
|
'thumbnail': self._og_search_thumbnail(webpage),
|
||||||
|
'duration': int_or_none(video_player.get('duration'), invscale=60),
|
||||||
|
'creator': clean_html(get_element_by_class('TeacherDetails-name', webpage)),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -171,12 +183,11 @@ class PlatziCourseIE(PlatziBaseIE):
|
|||||||
|
|
||||||
initialData = self._search_regex(
|
initialData = self._search_regex(
|
||||||
(r'window.initialData\s*=\s*({.+?})\s*;\s*\n', r'window.initialData\s*=\s*({.+?})\s*;'),
|
(r'window.initialData\s*=\s*({.+?})\s*;\s*\n', r'window.initialData\s*=\s*({.+?})\s*;'),
|
||||||
webpage, 'window.initialData')
|
webpage, 'initialData')
|
||||||
props = self._parse_json(
|
props = self._parse_json(initialData, course_name, default={})
|
||||||
initialData,
|
props = try_get(props, lambda x: x['initialProps'], dict) or {}
|
||||||
course_name)['initialState']
|
|
||||||
entries = []
|
entries = []
|
||||||
for chapter_num, chapter in enumerate(props['concepts'], 1):
|
for chapter_num, chapter in enumerate(props.get('concepts') or [], 1):
|
||||||
if not isinstance(chapter, dict):
|
if not isinstance(chapter, dict):
|
||||||
continue
|
continue
|
||||||
materials = chapter.get('materials')
|
materials = chapter.get('materials')
|
||||||
@ -206,4 +217,8 @@ class PlatziCourseIE(PlatziBaseIE):
|
|||||||
course_id = compat_str(try_get(props, lambda x: x['course']['id']))
|
course_id = compat_str(try_get(props, lambda x: x['course']['id']))
|
||||||
course_title = try_get(props, lambda x: x['course']['name'], compat_str)
|
course_title = try_get(props, lambda x: x['course']['name'], compat_str)
|
||||||
|
|
||||||
return self.playlist_result(entries, course_id, course_title)
|
result = self.playlist_result(entries, course_id, course_title)
|
||||||
|
desc = clean_html(get_element_by_class('RouteDescription-content', webpage))
|
||||||
|
if desc:
|
||||||
|
result['description'] = desc
|
||||||
|
return result
|
||||||
|
Loading…
Reference in New Issue
Block a user