2015-12-21 03:24:58 +00:00
|
|
|
import re
|
|
|
|
|
2015-10-15 22:27:46 +00:00
|
|
|
from .common import InfoExtractor
|
2020-06-05 18:44:36 +00:00
|
|
|
from ..utils import unsmuggle_url
|
2015-10-15 22:27:46 +00:00
|
|
|
|
|
|
|
|
2017-02-16 15:42:36 +00:00
|
|
|
class JWPlatformIE(InfoExtractor):
|
2022-06-13 13:09:58 +00:00
|
|
|
_VALID_URL = r'(?:https?://(?:content\.jwplatform|cdn\.jwplayer)\.com/(?:(?:feed|player|thumb|preview|manifest)s|jw6|v2/media)/|jwplatform:)(?P<id>[a-zA-Z0-9]{8})'
|
2019-01-10 09:50:18 +00:00
|
|
|
_TESTS = [{
|
2016-02-26 06:13:00 +00:00
|
|
|
'url': 'http://content.jwplatform.com/players/nPripu9l-ALJ3XQCI.js',
|
|
|
|
'md5': 'fa8899fa601eb7c83a64e9d568bdf325',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'nPripu9l',
|
|
|
|
'ext': 'mov',
|
|
|
|
'title': 'Big Buck Bunny Trailer',
|
|
|
|
'description': 'Big Buck Bunny is a short animated film by the Blender Institute. It is made using free and open source software.',
|
|
|
|
'upload_date': '20081127',
|
|
|
|
'timestamp': 1227796140,
|
|
|
|
}
|
2019-01-10 09:50:18 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://cdn.jwplayer.com/players/nPripu9l-ALJ3XQCI.js',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2016-02-26 06:13:00 +00:00
|
|
|
|
2022-10-03 19:37:48 +00:00
|
|
|
_WEBPAGE_TESTS = [{
|
|
|
|
# JWPlatform iframe
|
|
|
|
'url': 'https://www.covermagazine.co.uk/feature/2465255/business-protection-involved',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'AG26UQXM',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'upload_date': '20160719',
|
|
|
|
'timestamp': 1468923808,
|
|
|
|
'title': '2016_05_18 Cover L&G Business Protection V1 FINAL.mp4',
|
|
|
|
'thumbnail': 'https://cdn.jwplayer.com/v2/media/AG26UQXM/poster.jpg?width=720',
|
|
|
|
'description': '',
|
|
|
|
'duration': 294.0,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
# Player url not surrounded by quotes
|
|
|
|
'url': 'https://www.deutsche-kinemathek.de/en/online/streaming/darling-berlin',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'R10NQdhY',
|
|
|
|
'title': 'Playgirl',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'upload_date': '20220624',
|
|
|
|
'thumbnail': 'https://cdn.jwplayer.com/v2/media/R10NQdhY/poster.jpg?width=720',
|
|
|
|
'timestamp': 1656064800,
|
|
|
|
'description': 'BRD 1966, Will Tremper',
|
|
|
|
'duration': 5146.0,
|
|
|
|
},
|
|
|
|
'params': {'allowed_extractors': ['generic', 'jwplatform']},
|
|
|
|
}]
|
|
|
|
|
2022-08-01 01:23:25 +00:00
|
|
|
@classmethod
|
|
|
|
def _extract_embed_urls(cls, url, webpage):
|
2021-02-22 20:45:51 +00:00
|
|
|
for tag, key in ((r'(?:script|iframe)', 'src'), ('input', 'value')):
|
|
|
|
# <input value=URL> is used by hyland.com
|
|
|
|
# if we find <iframe>, dont look for <input>
|
|
|
|
ret = re.findall(
|
2022-10-03 19:37:48 +00:00
|
|
|
r'<%s[^>]+?%s=["\']?((?:https?:)?//(?:content\.jwplatform|cdn\.jwplayer)\.com/players/[a-zA-Z0-9]{8})' % (tag, key),
|
2021-02-22 20:45:51 +00:00
|
|
|
webpage)
|
|
|
|
if ret:
|
|
|
|
return ret
|
2022-06-11 21:55:55 +00:00
|
|
|
mobj = re.search(r'<div\b[^>]* data-video-jw-id="([a-zA-Z0-9]{8})"', webpage)
|
|
|
|
if mobj:
|
|
|
|
return [f'jwplatform:{mobj.group(1)}']
|
2016-02-26 06:13:00 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2020-06-05 18:44:36 +00:00
|
|
|
url, smuggled_data = unsmuggle_url(url, {})
|
|
|
|
self._initialize_geo_bypass({
|
|
|
|
'countries': smuggled_data.get('geo_countries'),
|
|
|
|
})
|
2016-02-26 06:13:00 +00:00
|
|
|
video_id = self._match_id(url)
|
2019-01-10 09:50:18 +00:00
|
|
|
json_data = self._download_json('https://cdn.jwplayer.com/v2/media/' + video_id, video_id)
|
2016-02-26 06:13:00 +00:00
|
|
|
return self._parse_jwplayer_data(json_data, video_id)
|