yt-dlp/yt_dlp/extractor/stretchinternet.py

36 lines
1.3 KiB
Python
Raw Permalink Normal View History

2017-10-24 16:50:02 +00:00
from .common import InfoExtractor
class StretchInternetIE(InfoExtractor):
_VALID_URL = r'https?://portal\.stretchinternet\.com/[^/]+/(?:portal|full)\.htm\?.*?\beventId=(?P<id>\d+)'
2017-10-24 16:50:02 +00:00
_TEST = {
'url': 'https://portal.stretchinternet.com/umary/portal.htm?eventId=573272&streamType=video',
2017-10-24 16:50:02 +00:00
'info_dict': {
'id': '573272',
2017-10-24 16:50:02 +00:00
'ext': 'mp4',
2021-03-02 08:05:59 +00:00
'title': 'UNIVERSITY OF MARY WRESTLING VS UPPER IOWA',
# 'timestamp': 1575668361,
# 'upload_date': '20191206',
'uploader_id': '99997',
2017-10-24 16:50:02 +00:00
}
}
def _real_extract(self, url):
video_id = self._match_id(url)
2021-03-02 08:05:59 +00:00
media_url = self._download_json(
'https://core.stretchlive.com/trinity/event/tcg/' + video_id,
video_id)[0]['media'][0]['url']
event = self._download_json(
2021-03-02 08:05:59 +00:00
'https://neo-client.stretchinternet.com/portal-ws/getEvent.json',
video_id, query={'eventID': video_id, 'token': 'asdf'})['event']
2017-10-24 16:50:02 +00:00
return {
'id': video_id,
'title': event['title'],
2021-03-02 08:05:59 +00:00
# TODO: parse US timezone abbreviations
# 'timestamp': event.get('dateTimeString'),
'url': 'https://' + media_url,
'uploader_id': event.get('ownerID'),
2017-10-24 16:50:02 +00:00
}