mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[extractor/MicrosoftEmbed] Add extractor (#5082)
Closes #2638 Authored by: DoubleCouponDay
This commit is contained in:
parent
f48ab881f6
commit
177662e0f2
3 changed files with 72 additions and 1 deletions
|
@ -3640,7 +3640,7 @@ def render_thumbnails_table(self, info_dict):
|
|||
return None
|
||||
return render_table(
|
||||
self._list_format_headers('ID', 'Width', 'Height', 'URL'),
|
||||
[[t.get('id'), t.get('width', 'unknown'), t.get('height', 'unknown'), t['url']] for t in thumbnails])
|
||||
[[t.get('id'), t.get('width') or 'unknown', t.get('height') or 'unknown', t['url']] for t in thumbnails])
|
||||
|
||||
def render_subtitles_table(self, video_id, subtitles):
|
||||
def _row(lang, formats):
|
||||
|
|
|
@ -960,6 +960,7 @@
|
|||
MicrosoftVirtualAcademyIE,
|
||||
MicrosoftVirtualAcademyCourseIE,
|
||||
)
|
||||
from .microsoftembed import MicrosoftEmbedIE
|
||||
from .mildom import (
|
||||
MildomIE,
|
||||
MildomVodIE,
|
||||
|
|
70
yt_dlp/extractor/microsoftembed.py
Normal file
70
yt_dlp/extractor/microsoftembed.py
Normal file
|
@ -0,0 +1,70 @@
|
|||
from .common import InfoExtractor
|
||||
from ..utils import (
|
||||
int_or_none,
|
||||
traverse_obj,
|
||||
unified_timestamp,
|
||||
)
|
||||
|
||||
|
||||
class MicrosoftEmbedIE(InfoExtractor):
|
||||
_VALID_URL = r'https?://(?:www\.)?microsoft\.com/(?:[^/]+/)?videoplayer/embed/(?P<id>[a-z0-9A-Z]+)'
|
||||
|
||||
_TESTS = [{
|
||||
'url': 'https://www.microsoft.com/en-us/videoplayer/embed/RWL07e',
|
||||
'md5': 'eb0ae9007f9b305f9acd0a03e74cb1a9',
|
||||
'info_dict': {
|
||||
'id': 'RWL07e',
|
||||
'title': 'Microsoft for Public Health and Social Services',
|
||||
'ext': 'mp4',
|
||||
'thumbnail': 'http://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RWL7Ju?ver=cae5',
|
||||
'age_limit': 0,
|
||||
'timestamp': 1631658316,
|
||||
'upload_date': '20210914'
|
||||
}
|
||||
}]
|
||||
_API_URL = 'https://prod-video-cms-rt-microsoft-com.akamaized.net/vhs/api/videos/'
|
||||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
metadata = self._download_json(self._API_URL + video_id, video_id)
|
||||
|
||||
formats = []
|
||||
for source_type, source in metadata['streams'].items():
|
||||
if source_type == 'smooth_Streaming':
|
||||
formats.extend(self._extract_ism_formats(source['url'], video_id, 'mss'))
|
||||
elif source_type == 'apple_HTTP_Live_Streaming':
|
||||
formats.extend(self._extract_m3u8_formats(source['url'], video_id, 'mp4'))
|
||||
elif source_type == 'mPEG_DASH':
|
||||
formats.extend(self._extract_mpd_formats(source['url'], video_id))
|
||||
else:
|
||||
formats.append({
|
||||
'format_id': source_type,
|
||||
'url': source['url'],
|
||||
'height': source.get('heightPixels'),
|
||||
'width': source.get('widthPixels'),
|
||||
})
|
||||
self._sort_formats(formats)
|
||||
|
||||
subtitles = {
|
||||
lang: [{
|
||||
'url': data.get('url'),
|
||||
'ext': 'vtt',
|
||||
}] for lang, data in traverse_obj(metadata, 'captions', default={}).items()
|
||||
}
|
||||
|
||||
thumbnails = [{
|
||||
'url': thumb.get('url'),
|
||||
'width': thumb.get('width') or None,
|
||||
'height': thumb.get('height') or None,
|
||||
} for thumb in traverse_obj(metadata, ('snippet', 'thumbnails', ...))]
|
||||
self._remove_duplicate_formats(thumbnails)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': traverse_obj(metadata, ('snippet', 'title')),
|
||||
'timestamp': unified_timestamp(traverse_obj(metadata, ('snippet', 'activeStartDate'))),
|
||||
'age_limit': int_or_none(traverse_obj(metadata, ('snippet', 'minimumAge'))) or 0,
|
||||
'formats': formats,
|
||||
'subtitles': subtitles,
|
||||
'thumbnails': thumbnails,
|
||||
}
|
Loading…
Reference in a new issue