2 from __future__ import unicode_literals
6 from .common import InfoExtractor
9 class JWPlatformIE(InfoExtractor):
10 _VALID_URL = r'(?:https?://content\.jwplatform\.com/(?:feeds|players|jw6)/|jwplatform:)(?P<id>[a-zA-Z0-9]{8})'
12 'url': 'http://content.jwplatform.com/players/nPripu9l-ALJ3XQCI.js',
13 'md5': 'fa8899fa601eb7c83a64e9d568bdf325',
17 'title': 'Big Buck Bunny Trailer',
18 'description': 'Big Buck Bunny is a short animated film by the Blender Institute. It is made using free and open source software.',
19 'upload_date': '20081127',
20 'timestamp': 1227796140,
25 def _extract_url(webpage):
27 r'<(?:script|iframe)[^>]+?src=["\'](?P<url>(?:https?:)?//content.jwplatform.com/players/[a-zA-Z0-9]{8})',
30 return mobj.group('url')
32 def _real_extract(self, url):
33 video_id = self._match_id(url)
34 json_data = self._download_json('http://content.jwplatform.com/feeds/%s.json' % video_id, video_id)
35 return self._parse_jwplayer_data(json_data, video_id)