2015-10-16 00:27:46 +02:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
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):
|
2019-09-23 21:44:00 +02:00
|
|
|
_VALID_URL = r'(?:https?://(?:content\.jwplatform|cdn\.jwplayer)\.com/(?:(?:feed|player|thumb|preview)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',
|
|
|
|
'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 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
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _extract_url(webpage):
|
2018-01-07 15:49:23 +01:00
|
|
|
urls = JWPlatformIE._extract_urls(webpage)
|
|
|
|
return urls[0] if urls else None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _extract_urls(webpage):
|
|
|
|
return re.findall(
|
2020-05-31 06:10:31 +02:00
|
|
|
r'<(?:script|iframe)[^>]+?src=["\']((?:https?:)?//(?:content\.jwplatform|cdn\.jwplayer)\.com/players/[a-zA-Z0-9]{8})',
|
2016-02-26 07:13:00 +01:00
|
|
|
webpage)
|
|
|
|
|
|
|
|
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)
|