diff options
author | coletdjnz <colethedj@protonmail.com> | 2021-08-30 09:11:03 +1200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 21:11:03 +0000 |
commit | 7e558722866a0bdccaffceea8d1aa79db7dbd78f (patch) | |
tree | c8588c49af27ce1b7ec85be5c3468a6d2abcda9f | |
parent | 2fc14b99253d337f7b8cfb6d5bf1a8f9ac16ad43 (diff) | |
download | hypervideo-pre-7e558722866a0bdccaffceea8d1aa79db7dbd78f.tar.lz hypervideo-pre-7e558722866a0bdccaffceea8d1aa79db7dbd78f.tar.xz hypervideo-pre-7e558722866a0bdccaffceea8d1aa79db7dbd78f.zip |
[camtube] remove extractor (#810)
Co-authored-by: alerikaisattera
-rw-r--r-- | yt_dlp/extractor/camtube.py | 71 | ||||
-rw-r--r-- | yt_dlp/extractor/extractors.py | 1 |
2 files changed, 0 insertions, 72 deletions
diff --git a/yt_dlp/extractor/camtube.py b/yt_dlp/extractor/camtube.py deleted file mode 100644 index b3be3bdcf..000000000 --- a/yt_dlp/extractor/camtube.py +++ /dev/null @@ -1,71 +0,0 @@ -# coding: utf-8 -from __future__ import unicode_literals - -from .common import InfoExtractor -from ..utils import ( - int_or_none, - unified_timestamp, -) - - -class CamTubeIE(InfoExtractor): - _VALID_URL = r'https?://(?:(?:www|api)\.)?camtube\.co/recordings?/(?P<id>[^/?#&]+)' - _TESTS = [{ - 'url': 'https://camtube.co/recording/minafay-030618-1136-chaturbate-female', - 'info_dict': { - 'id': '42ad3956-dd5b-445a-8313-803ea6079fac', - 'display_id': 'minafay-030618-1136-chaturbate-female', - 'ext': 'mp4', - 'title': 'minafay-030618-1136-chaturbate-female', - 'duration': 1274, - 'timestamp': 1528018608, - 'upload_date': '20180603', - 'age_limit': 18 - }, - 'params': { - 'skip_download': True, - }, - }] - - _API_BASE = 'https://api.camtube.co' - - def _real_extract(self, url): - display_id = self._match_id(url) - - token = self._download_json( - '%s/rpc/session/new' % self._API_BASE, display_id, - 'Downloading session token')['token'] - - self._set_cookie('api.camtube.co', 'session', token) - - video = self._download_json( - '%s/recordings/%s' % (self._API_BASE, display_id), display_id, - headers={'Referer': url}) - - video_id = video['uuid'] - timestamp = unified_timestamp(video.get('createdAt')) - duration = int_or_none(video.get('duration')) - view_count = int_or_none(video.get('viewCount')) - like_count = int_or_none(video.get('likeCount')) - creator = video.get('stageName') - - formats = [{ - 'url': '%s/recordings/%s/manifest.m3u8' - % (self._API_BASE, video_id), - 'format_id': 'hls', - 'ext': 'mp4', - 'protocol': 'm3u8_native', - }] - - return { - 'id': video_id, - 'display_id': display_id, - 'title': display_id, - 'timestamp': timestamp, - 'duration': duration, - 'view_count': view_count, - 'like_count': like_count, - 'creator': creator, - 'formats': formats, - 'age_limit': 18 - } diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py index bcc669c7a..fa5027f81 100644 --- a/yt_dlp/extractor/extractors.py +++ b/yt_dlp/extractor/extractors.py @@ -188,7 +188,6 @@ from .camdemy import ( CamdemyFolderIE ) from .cammodels import CamModelsIE -from .camtube import CamTubeIE from .camwithher import CamWithHerIE from .canalplus import CanalplusIE from .canalc2 import Canalc2IE |