mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	| @@ -245,6 +245,8 @@ class XHamsterIE(InfoExtractor): | ||||
|             else: | ||||
|                 categories = None | ||||
|  | ||||
|             uploader_url = url_or_none(try_get(video, lambda x: x['author']['pageURL'])) | ||||
|  | ||||
|             return { | ||||
|                 'id': video_id, | ||||
|                 'display_id': display_id, | ||||
| @@ -253,6 +255,8 @@ class XHamsterIE(InfoExtractor): | ||||
|                 'timestamp': int_or_none(video.get('created')), | ||||
|                 'uploader': try_get( | ||||
|                     video, lambda x: x['author']['name'], compat_str), | ||||
|                 'uploader_url': uploader_url, | ||||
|                 'uploader_id': uploader_url.split('/')[-1] if uploader_url else None, | ||||
|                 'thumbnail': video.get('thumbURL'), | ||||
|                 'duration': int_or_none(video.get('duration')), | ||||
|                 'view_count': int_or_none(video.get('views')), | ||||
| @@ -352,6 +356,7 @@ class XHamsterIE(InfoExtractor): | ||||
|             'description': description, | ||||
|             'upload_date': upload_date, | ||||
|             'uploader': uploader, | ||||
|             'uploader_id': uploader.lower() if uploader else None, | ||||
|             'thumbnail': thumbnail, | ||||
|             'duration': duration, | ||||
|             'view_count': view_count, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 octotherp
					octotherp