mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[YouPorn] Improve upload_date extraction
				
					
				
			See https://github.com/yt-dlp/yt-dlp/issues/2701#issuecomment-1034341883
This commit is contained in:
		| @@ -1,3 +1,4 @@ | |||||||
|  | # coding: utf-8 | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
|  |  | ||||||
| import re | import re | ||||||
| @@ -137,9 +138,10 @@ class YouPornIE(InfoExtractor): | |||||||
|             r'(?s)<div[^>]+class=["\']submitByLink["\'][^>]*>(.+?)</div>', |             r'(?s)<div[^>]+class=["\']submitByLink["\'][^>]*>(.+?)</div>', | ||||||
|             webpage, 'uploader', fatal=False) |             webpage, 'uploader', fatal=False) | ||||||
|         upload_date = unified_strdate(self._html_search_regex( |         upload_date = unified_strdate(self._html_search_regex( | ||||||
|             [r'UPLOADED:\s*<span>([^<]+)', |             (r'UPLOADED:\s*<span>([^<]+)', | ||||||
|              r'Date\s+[Aa]dded:\s*<span>([^<]+)', |              r'Date\s+[Aa]dded:\s*<span>([^<]+)', | ||||||
|              r'(?s)<div[^>]+class=["\']videoInfo(?:Date|Time)["\'][^>]*>(.+?)</div>'], |              r'''(?s)<div[^>]+class=["']videoInfo(?:Date|Time)\b[^>]*>(.+?)</div>''', | ||||||
|  |              r'(?s)<label\b[^>]*>Uploaded[^<]*</label>\s*<span\b[^>]*>(.+?)</span>'), | ||||||
|             webpage, 'upload date', fatal=False)) |             webpage, 'upload date', fatal=False)) | ||||||
|  |  | ||||||
|         age_limit = self._rta_search(webpage) |         age_limit = self._rta_search(webpage) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user