|
|
@ -46,8 +46,24 @@ class CuriosityStreamBaseIE(InfoExtractor): |
|
|
|
self._handle_errors(result) |
|
|
|
self._auth_token = result['message']['auth_token'] |
|
|
|
|
|
|
|
def _extract_media_info(self, media): |
|
|
|
video_id = compat_str(media['id']) |
|
|
|
|
|
|
|
class CuriosityStreamIE(CuriosityStreamBaseIE): |
|
|
|
IE_NAME = 'curiositystream' |
|
|
|
_VALID_URL = r'https?://(?:app\.)?curiositystream\.com/video/(?P<id>\d+)' |
|
|
|
_TEST = { |
|
|
|
'url': 'https://app.curiositystream.com/video/2', |
|
|
|
'md5': '262bb2f257ff301115f1973540de8983', |
|
|
|
'info_dict': { |
|
|
|
'id': '2', |
|
|
|
'ext': 'mp4', |
|
|
|
'title': 'How Did You Develop The Internet?', |
|
|
|
'description': 'Vint Cerf, Google\'s Chief Internet Evangelist, describes how he and Bob Kahn created the internet.', |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|
video_id = self._match_id(url) |
|
|
|
media = self._call_api('media/' + video_id, video_id) |
|
|
|
title = media['title'] |
|
|
|
|
|
|
|
formats = [] |
|
|
@ -114,38 +130,21 @@ class CuriosityStreamBaseIE(InfoExtractor): |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class CuriosityStreamIE(CuriosityStreamBaseIE): |
|
|
|
IE_NAME = 'curiositystream' |
|
|
|
_VALID_URL = r'https?://app\.curiositystream\.com/video/(?P<id>\d+)' |
|
|
|
_TEST = { |
|
|
|
'url': 'https://app.curiositystream.com/video/2', |
|
|
|
'md5': '262bb2f257ff301115f1973540de8983', |
|
|
|
'info_dict': { |
|
|
|
'id': '2', |
|
|
|
'ext': 'mp4', |
|
|
|
'title': 'How Did You Develop The Internet?', |
|
|
|
'description': 'Vint Cerf, Google\'s Chief Internet Evangelist, describes how he and Bob Kahn created the internet.', |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|
video_id = self._match_id(url) |
|
|
|
media = self._call_api('media/' + video_id, video_id) |
|
|
|
return self._extract_media_info(media) |
|
|
|
|
|
|
|
|
|
|
|
class CuriosityStreamCollectionIE(CuriosityStreamBaseIE): |
|
|
|
IE_NAME = 'curiositystream:collection' |
|
|
|
_VALID_URL = r'https?://app\.curiositystream\.com/collection/(?P<id>\d+)' |
|
|
|
_TEST = { |
|
|
|
_VALID_URL = r'https?://(?:app\.)?curiositystream\.com/(?:collection|series)/(?P<id>\d+)' |
|
|
|
_TESTS = [{ |
|
|
|
'url': 'https://app.curiositystream.com/collection/2', |
|
|
|
'info_dict': { |
|
|
|
'id': '2', |
|
|
|
'title': 'Curious Minds: The Internet', |
|
|
|
'description': 'How is the internet shaping our lives in the 21st Century?', |
|
|
|
}, |
|
|
|
'playlist_mincount': 12, |
|
|
|
} |
|
|
|
'playlist_mincount': 17, |
|
|
|
}, { |
|
|
|
'url': 'https://curiositystream.com/series/2', |
|
|
|
'only_matching': True, |
|
|
|
}] |
|
|
|
|
|
|
|
def _real_extract(self, url): |
|
|
|
collection_id = self._match_id(url) |
|
|
@ -153,7 +152,10 @@ class CuriosityStreamCollectionIE(CuriosityStreamBaseIE): |
|
|
|
'collections/' + collection_id, collection_id) |
|
|
|
entries = [] |
|
|
|
for media in collection.get('media', []): |
|
|
|
entries.append(self._extract_media_info(media)) |
|
|
|
media_id = compat_str(media.get('id')) |
|
|
|
entries.append(self.url_result( |
|
|
|
'https://curiositystream.com/video/' + media_id, |
|
|
|
CuriosityStreamIE.ie_key(), media_id)) |
|
|
|
return self.playlist_result( |
|
|
|
entries, collection_id, |
|
|
|
collection.get('title'), collection.get('description')) |