2015-10-15 22:27:46 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2015-12-21 03:24:58 +00:00
|
|
|
import re
|
|
|
|
|
2015-10-15 22:27:46 +00:00
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
2017-02-16 15:42:36 +00:00
|
|
|
class JWPlatformIE(InfoExtractor):
|
2019-01-10 09:50:18 +00:00
|
|
|
_VALID_URL = r'(?:https?://(?:content\.jwplatform|cdn\.jwplayer)\.com/(?:(?:feed|player|thumb|preview|video|manifest)s|jw6|v2/media)/|jwplatform:)(?P<id>[a-zA-Z0-9]{8})'
|
|
|
|
_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
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _extract_url(webpage):
|
2018-01-07 14:49:23 +00:00
|
|
|
urls = JWPlatformIE._extract_urls(webpage)
|
|
|
|
return urls[0] if urls else None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _extract_urls(webpage):
|
|
|
|
return re.findall(
|
|
|
|
r'<(?:script|iframe)[^>]+?src=["\']((?:https?:)?//content\.jwplatform\.com/players/[a-zA-Z0-9]{8})',
|
2016-02-26 06:13:00 +00:00
|
|
|
webpage)
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
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)
|