aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJChris246 <43832407+JChris246@users.noreply.github.com>2023-05-28 23:31:26 -0400
committerGitHub <noreply@github.com>2023-05-29 09:01:26 +0530
commitfc5a7f9b27d2a89b1f3ca7d33a95301c21d832cd (patch)
tree40efe9fd6058a1243111c86be83044a71aac1b87
parent738c90a463257634455ada3e5c18b714c531dede (diff)
downloadhypervideo-pre-fc5a7f9b27d2a89b1f3ca7d33a95301c21d832cd.tar.lz
hypervideo-pre-fc5a7f9b27d2a89b1f3ca7d33a95301c21d832cd.tar.xz
hypervideo-pre-fc5a7f9b27d2a89b1f3ca7d33a95301c21d832cd.zip
[extractor/daftsex] Update domain and embed player url (#5966)
Closes #5881 Authored by: JChris246
-rw-r--r--yt_dlp/extractor/daftsex.py27
1 files changed, 18 insertions, 9 deletions
diff --git a/yt_dlp/extractor/daftsex.py b/yt_dlp/extractor/daftsex.py
index 551d5e3ab..92510c767 100644
--- a/yt_dlp/extractor/daftsex.py
+++ b/yt_dlp/extractor/daftsex.py
@@ -1,6 +1,7 @@
from .common import InfoExtractor
from ..compat import compat_b64decode
from ..utils import (
+ ExtractorError,
int_or_none,
js_to_json,
parse_count,
@@ -12,21 +13,24 @@ from ..utils import (
class DaftsexIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?daftsex\.com/watch/(?P<id>-?\d+_\d+)'
+ _VALID_URL = r'https?://(?:www\.)?daft\.sex/watch/(?P<id>-?\d+_\d+)'
_TESTS = [{
- 'url': 'https://daftsex.com/watch/-35370899_456246186',
- 'md5': 'd95135e6cea2d905bea20dbe82cda64a',
+ 'url': 'https://daft.sex/watch/-35370899_456246186',
+ 'md5': '64c04ef7b4c7b04b308f3b0c78efe7cd',
'info_dict': {
'id': '-35370899_456246186',
'ext': 'mp4',
'title': 'just relaxing',
- 'description': 'just relaxing - Watch video Watch video in high quality',
+ 'description': 'just relaxing – Watch video Watch video in high quality',
'upload_date': '20201113',
'timestamp': 1605261911,
- 'thumbnail': r're:https://[^/]+/impf/-43BuMDIawmBGr3GLcZ93CYwWf2PBv_tVWoS1A/dnu41DnARU4\.jpg\?size=800x450&quality=96&keep_aspect_ratio=1&background=000000&sign=6af2c26ff4a45e55334189301c867384&type=video_thumb',
+ 'thumbnail': r're:^https?://.*\.jpg$',
+ 'age_limit': 18,
+ 'duration': 15.0,
+ 'view_count': int
},
}, {
- 'url': 'https://daftsex.com/watch/-156601359_456242791',
+ 'url': 'https://daft.sex/watch/-156601359_456242791',
'info_dict': {
'id': '-156601359_456242791',
'ext': 'mp4',
@@ -36,6 +40,7 @@ class DaftsexIE(InfoExtractor):
'timestamp': 1600250735,
'thumbnail': 'https://psv153-1.crazycloud.ru/videos/-156601359/456242791/thumb.jpg?extra=i3D32KaBbBFf9TqDRMAVmQ',
},
+ 'skip': 'deleted / private'
}]
def _real_extract(self, url):
@@ -60,7 +65,7 @@ class DaftsexIE(InfoExtractor):
webpage, 'player color', fatal=False) or ''
embed_page = self._download_webpage(
- 'https://daxab.com/player/%s?color=%s' % (player_hash, player_color),
+ 'https://dxb.to/player/%s?color=%s' % (player_hash, player_color),
video_id, headers={'Referer': url})
video_params = self._parse_json(
self._search_regex(
@@ -94,15 +99,19 @@ class DaftsexIE(InfoExtractor):
'age_limit': 18,
}
- item = self._download_json(
+ items = self._download_json(
f'{server_domain}/method/video.get/{video_id}', video_id,
headers={'Referer': url}, query={
'token': video_params['video']['access_token'],
'videos': video_id,
'ckey': video_params['c_key'],
'credentials': video_params['video']['credentials'],
- })['response']['items'][0]
+ })['response']['items']
+
+ if not items:
+ raise ExtractorError('Video is not available', video_id=video_id, expected=True)
+ item = items[0]
formats = []
for f_id, f_url in item.get('files', {}).items():
if f_id == 'external':