1 from .common
import InfoExtractor
9 class ViqeoIE(InfoExtractor
):
14 https?://cdn\.viqeo\.tv/embed/*\?.*?\bvid=|
15 https?://api\.viqeo\.tv/v\d+/data/startup?.*?\bvideo(?:%5B%5D|\[\])=
19 _EMBED_REGEX
= [r
'<iframe[^>]+\bsrc=(["\'])(?P
<url
>(?
:https?
:)?
//cdn\
.viqeo\
.tv
/embed
/*\?.*?
\bvid
=[\da
-f
]+.*?
)\
1']
21 'url
': 'https
://cdn
.viqeo
.tv
/embed
/?vid
=cde96f09d25f39bee837
',
22 'md5
': 'a169dd1a6426b350dca4296226f21e76
',
24 'id': 'cde96f09d25f39bee837
',
26 'title
': 'cde96f09d25f39bee837
',
27 'thumbnail
': r're
:^https?
://.*\
.jpg$
',
31 'url
': 'viqeo
:cde96f09d25f39bee837
',
32 'only_matching
': True,
34 'url
': 'https
://api
.viqeo
.tv
/v1
/data
/startup?video
%5B
%5D
=71bbec412ade45c3216c
&profile
=112',
35 'only_matching
': True,
38 def _real_extract(self, url):
39 video_id = self._match_id(url)
41 webpage = self._download_webpage(
42 f'https
://cdn
.viqeo
.tv
/embed
/?vid
={video_id}
', video_id)
44 data = self._parse_json(
46 r'SLOT_DATA\s
*=\s
*({.+?
})\s
*;', webpage, 'slot data
'),
51 for media_file in data['mediaFiles
']:
52 if not isinstance(media_file, dict):
54 media_url = url_or_none(media_file.get('url
'))
55 if not media_url or not media_url.startswith(('http
', '//')):
57 media_type = str_or_none(media_file.get('type'))
60 media_kind = media_type.split('/')[0].lower()
63 'width
': int_or_none(media_file.get('width
')),
64 'height
': int_or_none(media_file.get('height
')),
66 format_id = str_or_none(media_file.get('quality
'))
67 if media_kind == 'image
':
70 elif media_kind in ('video
', 'audio
'):
71 is_audio = media_kind == 'audio
'
73 'format_id
': 'audio
' if is_audio else format_id,
74 'fps
': int_or_none(media_file.get('fps
')),
75 'vcodec
': 'none
' if is_audio else None,
79 duration = int_or_none(data.get('duration
'))
85 'thumbnails
': thumbnails,