2024-06-11 23:37:34 -05:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2024-06-11 23:49:31 -05:00
|
|
|
from ..utils import orderedSet, smuggle_url, unsmuggle_url
|
2024-06-11 23:37:34 -05:00
|
|
|
|
|
|
|
|
|
|
|
class BBCMaestroComIE(InfoExtractor):
|
|
|
|
_VALID_URL = (
|
|
|
|
r'https?://(?:www\.)?bbcmaestro\.com/courses/(?P<id>[^?]+)'
|
|
|
|
)
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.bbcmaestro.com/courses/julia-donaldson/writing-children-s-picture-books/trailer',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'julia-donaldson/writing-children-s-picture-books/trailer',
|
|
|
|
'ext': 'mp4',
|
2024-06-11 23:49:31 -05:00
|
|
|
'title': 'Course trailer',
|
2024-06-11 23:37:34 -05:00
|
|
|
},
|
|
|
|
'params': {
|
2024-06-11 23:49:31 -05:00
|
|
|
'skip_download': True,
|
|
|
|
},
|
2024-06-11 23:37:34 -05:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _do_extract_video(self, url, webpage, video_id):
|
|
|
|
if '/lessons/' not in url:
|
|
|
|
title = 'Course trailer'
|
|
|
|
else:
|
|
|
|
title = self._html_search_regex(
|
|
|
|
r'<h1\b[^>]*lesson[^>]*title[^>]*>\s*(.+?)\s*</h1>',
|
|
|
|
webpage,
|
|
|
|
name='title',
|
2024-06-11 23:49:31 -05:00
|
|
|
flags=re.RegexFlag.S,
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
m3u8_url = self._html_search_regex(
|
|
|
|
r'<source[^>]+src="?\'?(\S+\.m3u8)',
|
|
|
|
webpage,
|
2024-06-11 23:49:31 -05:00
|
|
|
'video URL',
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
|
|
|
formats = []
|
|
|
|
if m3u8_url:
|
|
|
|
formats = self._extract_m3u8_formats(
|
|
|
|
m3u8_url=m3u8_url,
|
|
|
|
video_id=video_id,
|
|
|
|
ext='mp4',
|
|
|
|
m3u8_id='hls',
|
2024-06-11 23:49:31 -05:00
|
|
|
fatal=False,
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
|
|
|
|
2024-06-11 23:49:31 -05:00
|
|
|
return {
|
2024-06-11 23:37:34 -05:00
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2024-06-11 23:49:31 -05:00
|
|
|
'formats': formats,
|
2024-06-11 23:37:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
def _do_extract_playlist(self, url, webpage):
|
|
|
|
# Twitter Title usually: <Lesson Title> - <Author> | <Course Title>
|
|
|
|
twitter_title = self._html_search_meta(
|
|
|
|
['twitter:title'],
|
|
|
|
webpage,
|
2024-06-11 23:49:31 -05:00
|
|
|
fatal=True,
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
|
|
|
playlist_title = (
|
|
|
|
twitter_title
|
|
|
|
.split('-', maxsplit=1)[-1]
|
|
|
|
.replace('|', '-')
|
|
|
|
)
|
|
|
|
|
|
|
|
url_without_query_parameters = url.split('?', maxsplit=1)[0]
|
2024-06-11 23:49:31 -05:00
|
|
|
self.write_debug(f'url_without_query_parameters: {url_without_query_parameters}')
|
2024-06-11 23:37:34 -05:00
|
|
|
playlist_id = self._search_regex(
|
|
|
|
pattern=r'.*/courses/([^/]+/[^/]+).*',
|
|
|
|
string=url_without_query_parameters,
|
|
|
|
name='Playlist ID (from URL)',
|
2024-06-11 23:49:31 -05:00
|
|
|
fatal=True,
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
2024-06-11 23:49:31 -05:00
|
|
|
self.write_debug(f'playlist_id: {playlist_id}')
|
2024-06-11 23:37:34 -05:00
|
|
|
entries = [
|
|
|
|
self.url_result(
|
|
|
|
smuggle_url(
|
|
|
|
f'https://www.bbcmaestro.com/courses/{playlist_id}/lessons/{item_video_id}',
|
2024-06-11 23:49:31 -05:00
|
|
|
{'forcevideo': True},
|
2024-06-11 23:37:34 -05:00
|
|
|
),
|
2024-06-11 23:49:31 -05:00
|
|
|
ie=BBCMaestroComIE.ie_key(),
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
|
|
|
for item_video_id in orderedSet(re.findall(
|
|
|
|
r'href=[^>]*/courses/' + re.escape(playlist_id) + r'/lessons/([^?]+)',
|
2024-06-11 23:49:31 -05:00
|
|
|
webpage,
|
2024-06-11 23:37:34 -05:00
|
|
|
))
|
|
|
|
]
|
|
|
|
# self.write_debug('entries: %r' % entries)
|
|
|
|
return self.playlist_result(
|
|
|
|
entries=entries,
|
|
|
|
playlist_id=playlist_id,
|
2024-06-11 23:49:31 -05:00
|
|
|
playlist_title=playlist_title,
|
2024-06-11 23:37:34 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
def _check_login_provided(self):
|
|
|
|
if not self._cookies_passed:
|
|
|
|
self.raise_login_required('Login details are needed to download this content', method='cookies')
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
url, smuggled_data = unsmuggle_url(url, {})
|
2024-06-11 23:49:31 -05:00
|
|
|
self.write_debug(f'Extracting from: {url}')
|
2024-06-11 23:37:34 -05:00
|
|
|
video_id = self._match_id(url)
|
2024-06-11 23:49:31 -05:00
|
|
|
self.write_debug(f'Video ID: {video_id}')
|
2024-06-11 23:37:34 -05:00
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
|
|
|
is_private_course_content = ('/lessons/' in url)
|
|
|
|
is_login_required = is_private_course_content
|
|
|
|
if is_login_required:
|
|
|
|
# Note: We can only download the course trailer without login
|
|
|
|
self._check_login_provided()
|
|
|
|
|
2024-06-11 23:49:31 -05:00
|
|
|
is_playlist = (
|
2024-06-11 23:37:34 -05:00
|
|
|
is_private_course_content
|
|
|
|
and not smuggled_data.get('forcevideo')
|
|
|
|
and not self.get_param('noplaylist')
|
|
|
|
)
|
|
|
|
|
|
|
|
if is_playlist:
|
|
|
|
return self._do_extract_playlist(url, webpage=webpage)
|
|
|
|
return self._do_extract_video(url, webpage=webpage, video_id=video_id)
|