diff options
author | marieell <marieell@tuta.io> | 2022-11-26 03:30:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 08:00:25 +0530 |
commit | 86f557b636cf2dc66cd882a88ae4338086c48fbb (patch) | |
tree | 83c9a22603be789390ae18b251162e7edd50b9d7 | |
parent | c0caa805157fb315d4b24ea4e1f3eef0210c2096 (diff) | |
download | hypervideo-pre-86f557b636cf2dc66cd882a88ae4338086c48fbb.tar.lz hypervideo-pre-86f557b636cf2dc66cd882a88ae4338086c48fbb.tar.xz hypervideo-pre-86f557b636cf2dc66cd882a88ae4338086c48fbb.zip |
[extractor/youporn] Fix metadata (#2768)
Authored by: marieell
-rw-r--r-- | yt_dlp/extractor/youporn.py | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/yt_dlp/extractor/youporn.py b/yt_dlp/extractor/youporn.py index 2f3f21332..8f1b9911b 100644 --- a/yt_dlp/extractor/youporn.py +++ b/yt_dlp/extractor/youporn.py @@ -4,6 +4,7 @@ from .common import InfoExtractor from ..utils import ( extract_attributes, int_or_none, + merge_dicts, str_to_int, unified_strdate, url_or_none, @@ -64,6 +65,24 @@ class YouPornIE(InfoExtractor): }, { 'url': 'https://www.youporn.com/watch/13922959/femdom-principal/', 'only_matching': True, + }, { + 'url': 'https://www.youporn.com/watch/16290308/tinderspecial-trailer1/', + 'info_dict': { + 'id': '16290308', + 'age_limit': 18, + 'categories': [], + 'description': 'md5:00ea70f642f431c379763c17c2f396bc', + 'display_id': 'tinderspecial-trailer1', + 'duration': 298.0, + 'ext': 'mp4', + 'upload_date': '20201123', + 'uploader': 'Ersties', + 'tags': [], + 'thumbnail': 'https://fi1.ypncdn.com/202011/23/16290308/original/8/tinderspecial-trailer1-8(m=eaAaaEPbaaaa).jpg', + 'timestamp': 1606089600, + 'title': 'Tinder In Real Life', + 'view_count': int, + } }] def _real_extract(self, url): @@ -159,7 +178,8 @@ class YouPornIE(InfoExtractor): r'(?s)Tags:.*?</div>\s*<div[^>]+class=["\']tagBoxContent["\'][^>]*>(.+?)</div>', 'tags') - return { + data = self._search_json_ld(webpage, video_id, expected_type='VideoObject', fatal=False) + return merge_dicts(data, { 'id': video_id, 'display_id': display_id, 'title': title, @@ -174,4 +194,4 @@ class YouPornIE(InfoExtractor): 'tags': tags, 'age_limit': age_limit, 'formats': formats, - } + }) |