1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-17 00:22:34 +01:00

[Vidyard] Add extractor

This commit is contained in:
Sean Ellingham 2024-06-02 10:23:51 +01:00 committed by Sean Ellingham
parent db50f19d76
commit 5ef0b73d23
2 changed files with 161 additions and 0 deletions

View File

@ -2307,6 +2307,11 @@
)
from .vidlii import VidLiiIE
from .vidly import VidlyIE
from .vidyard import (
VidyardEmbedIE,
VidyardPlayIE,
VidyardWatchIE,
)
from .viewlift import (
ViewLiftEmbedIE,
ViewLiftIE,

156
yt_dlp/extractor/vidyard.py Normal file
View File

@ -0,0 +1,156 @@
from .common import InfoExtractor
from ..utils import int_or_none, traverse_obj
class VidyardBaseInfoExtractor(InfoExtractor):
def _get_formats_and_subtitle(self, video_source, video_id):
video_source = video_source or {}
formats, subtitles = [], {}
for key, value in video_source.items():
if key == 'hls':
for video_hls in value:
fmts, subs = self._extract_m3u8_formats_and_subtitles(video_hls.get('url'), video_id, headers={
'referer': 'https://play.vidyard.com/'
})
formats.extend(fmts)
self._merge_subtitles(subs, target=subtitles)
else:
formats.extend({
'url': video_mp4.get('url'),
'ext': 'mp4'
} for video_mp4 in value)
return formats, subtitles
def _get_direct_subtitle(self, caption_json):
subs = {}
for caption in caption_json:
subs.setdefault(caption.get('language') or 'und', []).append({
'url': caption.get('vttUrl'),
'name': caption.get('name')
})
return subs
def _webpage_url(self, url, video_id):
return url
def _real_extract(self, url):
video_id = self._match_valid_url(url).group('id')
webpage = self._download_webpage(self._webpage_url(url, video_id), video_id)
json_data = self._download_json(
f'https://play.vidyard.com/player/{video_id}.json', video_id)['payload']['chapters'][0]
formats, subtitles = self._get_formats_and_subtitle(json_data['sources'], video_id)
self._merge_subtitles(self._get_direct_subtitle(json_data.get('captions')), target=subtitles)
return {
'id': str(json_data['videoId']),
'title': json_data.get('name') or self._og_search_title(webpage, default=None) or self._html_extract_title(),
'description': json_data.get('description') or self._og_search_description(webpage, default=None),
'duration': int_or_none(json_data.get('seconds')),
'formats': formats,
'subtitles': subtitles,
'thumbnails': [{'url': thumbnail_url}
for thumbnail_url in traverse_obj(json_data, ('thumbnailUrls', ...))],
'http_headers': {
'referer': 'https://play.vidyard.com/'
}
}
class VidyardWatchIE(VidyardBaseInfoExtractor):
_VALID_URL = r'https?://(?:[\w-]+\.hubs|share)\.vidyard\.com/watch/(?P<id>[\w-]+)'
_TESTS = [
{
'url': 'https://vyexample03.hubs.vidyard.com/watch/oTDMPlUv--51Th455G5u7Q',
'info_dict': {
'id': '50347',
'ext': 'mp4',
'title': 'Homepage Video',
'description': 'Look I changed the description.',
'thumbnail': 'https://cdn.vidyard.com/thumbnails/50347/OUPa5LTKV46849sLYngMqQ_small.jpg',
'duration': 99,
}
},
{
'url': 'https://share.vidyard.com/watch/PaQzDAT1h8JqB8ivEu2j6Y?',
'info_dict': {
'id': '9281024',
'ext': 'mp4',
'title': 'Inline Embed',
'description': 'Vidyard video',
'thumbnail': 'https://cdn.vidyard.com/thumbnails/spacer.gif',
'duration': 41,
}
},
]
class VidyardEmbedIE(VidyardBaseInfoExtractor):
_VALID_URL = r'https?://embed\.vidyard\.com/share/(?P<id>[\w-]+)'
_TESTS = [
{
'url': 'https://embed.vidyard.com/share/oTDMPlUv--51Th455G5u7Q',
'info_dict': {
'id': '50347',
'ext': 'mp4',
'title': 'Homepage Video',
'description': 'Look I changed the description.',
'thumbnail': 'https://cdn.vidyard.com/thumbnails/50347/OUPa5LTKV46849sLYngMqQ_small.jpg',
'duration': 99,
}
}
]
class VidyardPlayIE(VidyardBaseInfoExtractor):
_VALID_URL = r'https?://play\.vidyard\.com/(?P<id>[\w-]+)\.[\w]+'
_TESTS = [
{
# URL of iframe embed src
'url': 'https://play.vidyard.com/iDqTwWGrd36vaLuaCY3nTs.html',
'info_dict': {
'id': '9281009',
'ext': 'mp4',
'title': 'Lightbox Embed',
'thumbnail': 'https://cdn.vidyard.com/thumbnails/spacer.gif',
'duration': 39,
}
},
{
# URL of inline/lightbox embed src
'url': 'https://play.vidyard.com/iDqTwWGrd36vaLuaCY3nTs.jpg',
'info_dict': {
'id': '9281009',
'ext': 'mp4',
'title': 'Lightbox Embed',
'thumbnail': 'https://cdn.vidyard.com/thumbnails/spacer.gif',
'duration': 39,
}
},
]
_EMBED_REGEX = [
# iframe embed
r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//play\.vidyard\.com/[\w-]+.html)\1',
# inline/lightbox embed
r'<img[^>]+?src=(["\'])(?P<url>(?:https?:)?//play\.vidyard\.com/[\w-]+.jpg)\1',
]
_WEBPAGE_TESTS = [
{
# URL containing embedded video
'url': 'https://resources.altium.com/p/2-the-extreme-importance-of-pc-board-stack-up',
'info_dict': {
'id': '3225198',
'ext': 'mp4',
'title': 'The Extreme Importance of PC Board Stack Up',
'thumbnail': 'https://cdn.vidyard.com/thumbnails/73_Q3_hBexWX7Og1sae6cg/9998fa4faec921439e2c04_small.jpg',
'duration': 3422,
}
},
]
def _webpage_url(self, url, video_id):
return f'https://play.vidyard.com/{video_id}.html'