2015-12-21 04:24:58 +01:00
|
|
|
import re
|
|
|
|
|
2015-10-16 00:27:46 +02:00
|
|
|
from .common import InfoExtractor
|
2020-06-05 20:44:36 +02:00
|
|
|
from ..utils import unsmuggle_url
|
2015-10-16 00:27:46 +02:00
|
|
|
|
|
|
|
|
2017-02-16 16:42:36 +01:00
|
|
|
class JWPlatformIE(InfoExtractor):
|
2022-06-13 15:09:58 +02: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 10:50:18 +01:00
|
|
|
_TESTS = [{
|
2016-02-26 07:13:00 +01:00
|
|
|
'url': 'http://content.jwplatform.com/players/nPripu9l-ALJ3XQCI.js',
|
2023-03-12 19:07:34 +01:00
|
|
|
'md5': '3aa16e4f6860e6e78b7df5829519aed3',
|
2016-02-26 07:13:00 +01:00
|
|
|
'info_dict': {
|
|
|
|
'id': 'nPripu9l',
|
2023-03-12 19:07:34 +01:00
|
|
|
'ext': 'mp4',
|
2016-02-26 07:13:00 +01:00
|
|
|
'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,
|
2023-03-12 19:07:34 +01:00
|
|
|
'duration': 32.0,
|
|
|
|
'thumbnail': 'https://cdn.jwplayer.com/v2/media/nPripu9l/poster.jpg?width=720',
|
2016-02-26 07:13:00 +01:00
|
|
|
}
|
2019-01-10 10:50:18 +01:00
|
|
|
}, {
|
|
|
|
'url': 'https://cdn.jwplayer.com/players/nPripu9l-ALJ3XQCI.js',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2016-02-26 07:13:00 +01:00
|
|
|
|
2022-10-03 21:37:48 +02: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
|
2023-03-12 19:07:34 +01:00
|
|
|
'url': 'https://www.deutsche-kinemathek.de/en/online/streaming/school-trip',
|
2022-10-03 21:37:48 +02:00
|
|
|
'info_dict': {
|
2023-03-12 19:07:34 +01:00
|
|
|
'id': 'jUxh5uin',
|
|
|
|
'title': 'Klassenfahrt',
|
2022-10-03 21:37:48 +02:00
|
|
|
'ext': 'mp4',
|
2023-03-12 19:07:34 +01:00
|
|
|
'upload_date': '20230109',
|
|
|
|
'thumbnail': 'https://cdn.jwplayer.com/v2/media/jUxh5uin/poster.jpg?width=720',
|
|
|
|
'timestamp': 1673270298,
|
|
|
|
'description': '',
|
|
|
|
'duration': 5193.0,
|
2022-10-03 21:37:48 +02:00
|
|
|
},
|
|
|
|
'params': {'allowed_extractors': ['generic', 'jwplatform']},
|
2023-03-12 19:07:34 +01:00
|
|
|
}, {
|
|
|
|
# iframe src attribute includes backslash before URL string
|
|
|
|
'url': 'https://www.elespectador.com/colombia/video-asi-se-evito-la-fuga-de-john-poulos-presunto-feminicida-de-valentina-trespalacios-explicacion',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'QD3gsexj',
|
|
|
|
'title': 'Así se evitó la fuga de John Poulos, presunto feminicida de Valentina Trespalacios',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'upload_date': '20230127',
|
|
|
|
'thumbnail': 'https://cdn.jwplayer.com/v2/media/QD3gsexj/poster.jpg?width=720',
|
|
|
|
'timestamp': 1674862986,
|
|
|
|
'description': 'md5:128fd74591c4e1fc2da598c5cb6f5ce4',
|
|
|
|
'duration': 263.0,
|
|
|
|
},
|
2022-10-03 21:37:48 +02:00
|
|
|
}]
|
|
|
|
|
2022-08-01 03:23:25 +02:00
|
|
|
@classmethod
|
|
|
|
def _extract_embed_urls(cls, url, webpage):
|
2021-02-22 21:45:51 +01: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(
|
2023-03-12 19:07:34 +01:00
|
|
|
r'<%s[^>]+?%s=\\?["\']?((?:https?:)?//(?:content\.jwplatform|cdn\.jwplayer)\.com/players/[a-zA-Z0-9]{8})' % (tag, key),
|
2021-02-22 21:45:51 +01:00
|
|
|
webpage)
|
|
|
|
if ret:
|
|
|
|
return ret
|
2022-06-11 23:55:55 +02: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 07:13:00 +01:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2020-06-05 20:44:36 +02:00
|
|
|
url, smuggled_data = unsmuggle_url(url, {})
|
|
|
|
self._initialize_geo_bypass({
|
|
|
|
'countries': smuggled_data.get('geo_countries'),
|
|
|
|
})
|
2016-02-26 07:13:00 +01:00
|
|
|
video_id = self._match_id(url)
|
2019-01-10 10:50:18 +01:00
|
|
|
json_data = self._download_json('https://cdn.jwplayer.com/v2/media/' + video_id, video_id)
|
2016-02-26 07:13:00 +01:00
|
|
|
return self._parse_jwplayer_data(json_data, video_id)
|