diff options
author | Jesús <heckyel@hyperbola.info> | 2022-12-01 23:33:30 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-12-01 23:33:30 +0800 |
commit | ef1a420d6de7876b7b6732abc8ab78351c5a2bfc (patch) | |
tree | 9ba7d8409aa5baa696f5fb10db5d395c2f050276 /yt_dlp/extractor/livestreamfails.py | |
parent | 16e8548f6a720a78679e417a20a300db2036bf6c (diff) | |
parent | ddf1e22d48530819d60220d0bdc36e20f5b8483b (diff) | |
download | hypervideo-pre-ef1a420d6de7876b7b6732abc8ab78351c5a2bfc.tar.lz hypervideo-pre-ef1a420d6de7876b7b6732abc8ab78351c5a2bfc.tar.xz hypervideo-pre-ef1a420d6de7876b7b6732abc8ab78351c5a2bfc.zip |
update from upstream 2022-12-01 UTC+8
Diffstat (limited to 'yt_dlp/extractor/livestreamfails.py')
-rw-r--r-- | yt_dlp/extractor/livestreamfails.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/yt_dlp/extractor/livestreamfails.py b/yt_dlp/extractor/livestreamfails.py new file mode 100644 index 000000000..0df638422 --- /dev/null +++ b/yt_dlp/extractor/livestreamfails.py @@ -0,0 +1,37 @@ +from .common import InfoExtractor +from ..utils import format_field, traverse_obj, unified_timestamp + + +class LivestreamfailsIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?livestreamfails\.com/(?:clip|post)/(?P<id>[0-9]+)' + _TESTS = [{ + 'url': 'https://livestreamfails.com/clip/139200', + 'md5': '8a03aea1a46e94a05af6410337463102', + 'info_dict': { + 'id': '139200', + 'ext': 'mp4', + 'display_id': 'ConcernedLitigiousSalmonPeteZaroll-O8yo9W2L8OZEKhV2', + 'title': 'Streamer jumps off a trampoline at full speed', + 'creator': 'paradeev1ch', + 'thumbnail': r're:^https?://.+', + 'timestamp': 1656271785, + 'upload_date': '20220626', + } + }, { + 'url': 'https://livestreamfails.com/post/139200', + 'only_matching': True, + }] + + def _real_extract(self, url): + video_id = self._match_id(url) + api_response = self._download_json(f'https://api.livestreamfails.com/clip/{video_id}', video_id) + + return { + 'id': video_id, + 'display_id': api_response.get('sourceId'), + 'timestamp': unified_timestamp(api_response.get('createdAt')), + 'url': f'https://livestreamfails-video-prod.b-cdn.net/video/{api_response["videoId"]}', + 'title': api_response.get('label'), + 'creator': traverse_obj(api_response, ('streamer', 'label')), + 'thumbnail': format_field(api_response, 'imageId', 'https://livestreamfails-image-prod.b-cdn.net/image/%s') + } |