mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[tnaflix] Fix metadata extraction
This commit is contained in:
parent
2f2fcf1a33
commit
568d2f78d6
@ -136,7 +136,7 @@ def extract_field(pattern, name):
|
|||||||
average_rating = float_or_none(extract_field(self._AVERAGE_RATING_REGEX, 'average rating'))
|
average_rating = float_or_none(extract_field(self._AVERAGE_RATING_REGEX, 'average rating'))
|
||||||
|
|
||||||
categories_str = extract_field(self._CATEGORIES_REGEX, 'categories')
|
categories_str = extract_field(self._CATEGORIES_REGEX, 'categories')
|
||||||
categories = categories_str.split(', ') if categories_str is not None else []
|
categories = [c.strip() for c in categories_str.split(',')] if categories_str is not None else []
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
@ -190,13 +190,14 @@ class TNAFlixIE(TNAFlixNetworkBaseIE):
|
|||||||
_VALID_URL = r'https?://(?:www\.)?tnaflix\.com/[^/]+/(?P<display_id>[^/]+)/video(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?tnaflix\.com/[^/]+/(?P<display_id>[^/]+)/video(?P<id>\d+)'
|
||||||
|
|
||||||
_TITLE_REGEX = r'<title>(.+?) - TNAFlix Porn Videos</title>'
|
_TITLE_REGEX = r'<title>(.+?) - TNAFlix Porn Videos</title>'
|
||||||
_DESCRIPTION_REGEX = r'<h3 itemprop="description">([^<]+)</h3>'
|
_DESCRIPTION_REGEX = r'<meta[^>]+name="description"[^>]+content="([^"]+)"'
|
||||||
_UPLOADER_REGEX = r'(?s)<span[^>]+class="infoTitle"[^>]*>Uploaded By:</span>(.+?)<div'
|
_UPLOADER_REGEX = r'<i>\s*Verified Member\s*</i>\s*<h1>(.+?)</h1>'
|
||||||
|
_CATEGORIES_REGEX = r'(?s)<span[^>]*>Categories:</span>(.+?)</div>'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
# anonymous uploader, no categories
|
# anonymous uploader, no categories
|
||||||
'url': 'http://www.tnaflix.com/porn-stars/Carmella-Decesare-striptease/video553878',
|
'url': 'http://www.tnaflix.com/porn-stars/Carmella-Decesare-striptease/video553878',
|
||||||
'md5': 'ecf3498417d09216374fc5907f9c6ec0',
|
'md5': '7e569419fe6d69543d01e6be22f5f7c4',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '553878',
|
'id': '553878',
|
||||||
'display_id': 'Carmella-Decesare-striptease',
|
'display_id': 'Carmella-Decesare-striptease',
|
||||||
@ -205,17 +206,16 @@ class TNAFlixIE(TNAFlixNetworkBaseIE):
|
|||||||
'thumbnail': 're:https?://.*\.jpg$',
|
'thumbnail': 're:https?://.*\.jpg$',
|
||||||
'duration': 91,
|
'duration': 91,
|
||||||
'age_limit': 18,
|
'age_limit': 18,
|
||||||
'uploader': 'Anonymous',
|
'categories': ['Porn Stars'],
|
||||||
'categories': [],
|
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
# non-anonymous uploader, categories
|
# non-anonymous uploader, categories
|
||||||
'url': 'https://www.tnaflix.com/teen-porn/Educational-xxx-video/video6538',
|
'url': 'https://www.tnaflix.com/teen-porn/Educational-xxx-video/video6538',
|
||||||
'md5': '0f5d4d490dbfd117b8607054248a07c0',
|
'md5': 'fcba2636572895aba116171a899a5658',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '6538',
|
'id': '6538',
|
||||||
'display_id': 'Educational-xxx-video',
|
'display_id': 'Educational-xxx-video',
|
||||||
'ext': 'mp4',
|
'ext': 'flv',
|
||||||
'title': 'Educational xxx video',
|
'title': 'Educational xxx video',
|
||||||
'description': 'md5:b4fab8f88a8621c8fabd361a173fe5b8',
|
'description': 'md5:b4fab8f88a8621c8fabd361a173fe5b8',
|
||||||
'thumbnail': 're:https?://.*\.jpg$',
|
'thumbnail': 're:https?://.*\.jpg$',
|
||||||
|
Loading…
Reference in New Issue
Block a user