mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-05-11 00:04:50 +09:00
Merge 0e91062090cb39a5482edc13f4f8222a0cbc2c9e into 3eb8d22ddb8982ca4fb56bb7a8d6517538bf14c6
This commit is contained in:
commit
6424295af3
@ -1,21 +1,16 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
from datetime import datetime
|
||||||
|
try:
|
||||||
|
from zoneinfo import ZoneInfo as compat_ZoneInfo # Python 3.9+
|
||||||
|
except ImportError:
|
||||||
|
compat_ZoneInfo = None # Fallback: Do not handle alphabetic time zones
|
||||||
|
|
||||||
|
from ..utils import unified_timestamp, parse_iso8601
|
||||||
|
|
||||||
class StretchInternetIE(InfoExtractor):
|
class StretchInternetIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://portal\.stretchinternet\.com/[^/]+/(?:portal|full)\.htm\?.*?\beventId=(?P<id>\d+)'
|
_VALID_URL = r'https?://portal\.stretchinternet\.com/[^/]+/(?:portal|full)\.htm\?.*?\beventId=(?P<id>\d+)'
|
||||||
_TEST = {
|
|
||||||
'url': 'https://portal.stretchinternet.com/umary/portal.htm?eventId=573272&streamType=video',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '573272',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'UNIVERSITY OF MARY WRESTLING VS UPPER IOWA',
|
|
||||||
# 'timestamp': 1575668361,
|
|
||||||
# 'upload_date': '20191206',
|
|
||||||
'uploader_id': '99997',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
@ -23,6 +18,7 @@ class StretchInternetIE(InfoExtractor):
|
|||||||
media_url = self._download_json(
|
media_url = self._download_json(
|
||||||
'https://core.stretchlive.com/trinity/event/tcg/' + video_id,
|
'https://core.stretchlive.com/trinity/event/tcg/' + video_id,
|
||||||
video_id)[0]['media'][0]['url']
|
video_id)[0]['media'][0]['url']
|
||||||
|
|
||||||
event = self._download_json(
|
event = self._download_json(
|
||||||
'https://neo-client.stretchinternet.com/portal-ws/getEvent.json',
|
'https://neo-client.stretchinternet.com/portal-ws/getEvent.json',
|
||||||
video_id, query={'eventID': video_id, 'token': 'asdf'})['event']
|
video_id, query={'eventID': video_id, 'token': 'asdf'})['event']
|
||||||
@ -30,8 +26,26 @@ class StretchInternetIE(InfoExtractor):
|
|||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': event['title'],
|
'title': event['title'],
|
||||||
# TODO: parse US timezone abbreviations
|
'timestamp': self._parse_date(event.get('dateTimeString')),
|
||||||
# 'timestamp': event.get('dateTimeString'),
|
|
||||||
'url': 'https://' + media_url,
|
'url': 'https://' + media_url,
|
||||||
'uploader_id': event.get('ownerID'),
|
'uploader_id': event.get('ownerID'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def _parse_date(self, date_string):
|
||||||
|
"""Parses an ISO 8601 date string into a UNIX timestamp."""
|
||||||
|
if not date_string:
|
||||||
|
return None
|
||||||
|
|
||||||
|
# Attempt to use built-in utils first
|
||||||
|
timestamp = unified_timestamp(date_string) or parse_iso8601(date_string)
|
||||||
|
if timestamp is not None:
|
||||||
|
return timestamp
|
||||||
|
|
||||||
|
try:
|
||||||
|
# Manually parse ISO 8601 datetime string with numeric timezone offset
|
||||||
|
dt = datetime.strptime(date_string, '%Y-%m-%dT%H:%M:%S%z')
|
||||||
|
return int(dt.timestamp()) # Convert to UNIX timestamp
|
||||||
|
except ValueError:
|
||||||
|
self._downloader.report_warning(f"Could not parse date string: {date_string}")
|
||||||
|
|
||||||
|
return None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user