[pinkbike] Fix uploader extraction (closes #12054)
This commit is contained in:
		
							parent
							
								
									04a741232f
								
							
						
					
					
						commit
						3021cf83b7
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -64,7 +64,8 @@ class PinkbikeIE(InfoExtractor):
 | 
				
			||||||
            'video:duration', webpage, 'duration'))
 | 
					            'video:duration', webpage, 'duration'))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        uploader = self._search_regex(
 | 
					        uploader = self._search_regex(
 | 
				
			||||||
            r'un:\s*"([^"]+)"', webpage, 'uploader', fatal=False)
 | 
					            r'<a[^>]+\brel=["\']author[^>]+>([^<]+)', webpage,
 | 
				
			||||||
 | 
					            'uploader', fatal=False)
 | 
				
			||||||
        upload_date = unified_strdate(self._search_regex(
 | 
					        upload_date = unified_strdate(self._search_regex(
 | 
				
			||||||
            r'class="fullTime"[^>]+title="([^"]+)"',
 | 
					            r'class="fullTime"[^>]+title="([^"]+)"',
 | 
				
			||||||
            webpage, 'upload date', fatal=False))
 | 
					            webpage, 'upload date', fatal=False))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue