mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
9 years ago
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
9 years ago
|
import re
|
||
|
|
||
9 years ago
|
from .common import InfoExtractor
|
||
4 years ago
|
from ..utils import unsmuggle_url
|
||
9 years ago
|
|
||
|
|
||
8 years ago
|
class JWPlatformIE(InfoExtractor):
|
||
5 years ago
|
_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})'
|
||
6 years ago
|
_TESTS = [{
|
||
9 years ago
|
'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,
|
||
|
}
|
||
6 years ago
|
}, {
|
||
|
'url': 'https://cdn.jwplayer.com/players/nPripu9l-ALJ3XQCI.js',
|
||
|
'only_matching': True,
|
||
|
}]
|
||
9 years ago
|
|
||
|
@staticmethod
|
||
|
def _extract_url(webpage):
|
||
7 years ago
|
urls = JWPlatformIE._extract_urls(webpage)
|
||
|
return urls[0] if urls else None
|
||
|
|
||
|
@staticmethod
|
||
|
def _extract_urls(webpage):
|
||
|
return re.findall(
|
||
4 years ago
|
r'<(?:script|iframe)[^>]+?src=["\']((?:https?:)?//(?:content\.jwplatform|cdn\.jwplayer)\.com/players/[a-zA-Z0-9]{8})',
|
||
9 years ago
|
webpage)
|
||
|
|
||
|
def _real_extract(self, url):
|
||
4 years ago
|
url, smuggled_data = unsmuggle_url(url, {})
|
||
|
self._initialize_geo_bypass({
|
||
|
'countries': smuggled_data.get('geo_countries'),
|
||
|
})
|
||
9 years ago
|
video_id = self._match_id(url)
|
||
6 years ago
|
json_data = self._download_json('https://cdn.jwplayer.com/v2/media/' + video_id, video_id)
|
||
9 years ago
|
return self._parse_jwplayer_data(json_data, video_id)
|