diff options
author | Ashish Gupta <39122144+Ashish0804@users.noreply.github.com> | 2021-11-20 14:55:14 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 14:55:14 +0530 |
commit | 77fcc6515852bc2e1c6960a6e010ab2ff1caf1ee (patch) | |
tree | 720b4b22536300995e792d8e9d1e9e92c2a7f2eb | |
parent | 545ad64988d03b8c38e51004cd6941236f529e66 (diff) | |
download | hypervideo-pre-77fcc6515852bc2e1c6960a6e010ab2ff1caf1ee.tar.lz hypervideo-pre-77fcc6515852bc2e1c6960a6e010ab2ff1caf1ee.tar.xz hypervideo-pre-77fcc6515852bc2e1c6960a6e010ab2ff1caf1ee.zip |
[CozyTV] Add extractor (#1727)
Authored by: Ashish0804
-rw-r--r-- | yt_dlp/extractor/cozytv.py | 40 | ||||
-rw-r--r-- | yt_dlp/extractor/extractors.py | 1 |
2 files changed, 41 insertions, 0 deletions
diff --git a/yt_dlp/extractor/cozytv.py b/yt_dlp/extractor/cozytv.py new file mode 100644 index 000000000..868d8d27d --- /dev/null +++ b/yt_dlp/extractor/cozytv.py @@ -0,0 +1,40 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor +from ..utils import unified_strdate + + +class CozyTVIE(InfoExtractor): + _VALID_URL = r'(?:https?://)(?:www\.)?cozy\.tv/(?P<uploader>[^/]+)/replays/(?P<id>[^/$#&?]+)' + + _TESTS = [{ + 'url': 'https://cozy.tv/beardson/replays/2021-11-19_1', + 'info_dict': { + 'id': 'beardson-2021-11-19_1', + 'ext': 'mp4', + 'title': 'pokemon pt2', + 'uploader': 'beardson', + 'upload_date': '20211119', + 'was_live': True, + 'duration': 7981, + }, + 'params': {'skip_download': True} + }] + + def _real_extract(self, url): + uploader, date = self._match_valid_url(url).groups() + id = f'{uploader}-{date}' + data_json = self._download_json(f'https://api.cozy.tv/cache/{uploader}/replay/{date}', id) + formats, subtitles = self._extract_m3u8_formats_and_subtitles( + f'https://cozycdn.foxtrotstream.xyz/replays/{uploader}/{date}/index.m3u8', id, ext='mp4') + return { + 'id': id, + 'title': data_json.get('title'), + 'uploader': data_json.get('user') or uploader, + 'upload_date': unified_strdate(data_json.get('date')), + 'was_live': True, + 'duration': data_json.get('duration'), + 'formats': formats, + 'subtitles': subtitles, + } diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index fdcd60e2d..a0f4908f0 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -293,6 +293,7 @@ from .commonprotocols import ( from .condenast import CondeNastIE from .contv import CONtvIE from .corus import CorusIE +from .cozytv import CozyTVIE from .cracked import CrackedIE from .crackle import CrackleIE from .crooksandliars import CrooksAndLiarsIE |