aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/premiershiprugby.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/premiershiprugby.py')
-rw-r--r--hypervideo_dl/extractor/premiershiprugby.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/hypervideo_dl/extractor/premiershiprugby.py b/hypervideo_dl/extractor/premiershiprugby.py
new file mode 100644
index 0000000..67d41fd
--- /dev/null
+++ b/hypervideo_dl/extractor/premiershiprugby.py
@@ -0,0 +1,39 @@
+from .common import InfoExtractor
+from ..utils import int_or_none, traverse_obj
+
+
+class PremiershipRugbyIE(InfoExtractor):
+ _VALID_URL = r'https?://(?:\w+\.)premiershiprugby\.(?:com)/watch/(?P<id>[\w-]+)'
+ _TESTS = [{
+ 'url': 'https://www.premiershiprugby.com/watch/full-match-harlequins-v-newcastle-falcons',
+ 'info_dict': {
+ 'id': '0_mbkb7ldt',
+ 'title': 'Full Match: Harlequins v Newcastle Falcons',
+ 'ext': 'mp4',
+ 'thumbnail': 'https://open.http.mp.streamamg.com/p/3000914/sp/300091400/thumbnail/entry_id/0_mbkb7ldt//width/960/height/540/type/1/quality/75',
+ 'duration': 6093.0,
+ 'tags': ['video'],
+ 'categories': ['Full Match', 'Harlequins', 'Newcastle Falcons', 'gallaher premiership'],
+ }
+ }]
+
+ def _real_extract(self, url):
+ display_id = self._match_id(url)
+ json_data = self._download_json(
+ f'https://article-cms-api.incrowdsports.com/v2/articles/slug/{display_id}',
+ display_id, query={'clientId': 'PRL'})['data']['article']
+
+ formats, subs = self._extract_m3u8_formats_and_subtitles(
+ json_data['heroMedia']['content']['videoLink'], display_id)
+
+ return {
+ 'id': json_data['heroMedia']['content']['sourceSystemId'],
+ 'display_id': display_id,
+ 'title': traverse_obj(json_data, ('heroMedia', 'title')),
+ 'formats': formats,
+ 'subtitles': subs,
+ 'thumbnail': traverse_obj(json_data, ('heroMedia', 'content', 'videoThumbnail')),
+ 'duration': int_or_none(traverse_obj(json_data, ('heroMedia', 'content', 'metadata', 'msDuration')), scale=1000),
+ 'tags': json_data.get('tags'),
+ 'categories': traverse_obj(json_data, ('categories', ..., 'text')),
+ }