mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 03:33:46 +00:00 
			
		
		
		
	[amp] Fix upload timestamp extraction (Closes #9007)
This commit is contained in:
		
							parent
							
								
									3454139576
								
							
						
					
					
						commit
						87d105ac6c
					
				@ -69,12 +69,14 @@ class AMPIE(InfoExtractor):
 | 
			
		||||
 | 
			
		||||
        self._sort_formats(formats)
 | 
			
		||||
 | 
			
		||||
        timestamp = parse_iso8601(item.get('pubDate'), ' ') or parse_iso8601(item.get('dc-date'))
 | 
			
		||||
 | 
			
		||||
        return {
 | 
			
		||||
            'id': video_id,
 | 
			
		||||
            'title': get_media_node('title'),
 | 
			
		||||
            'description': get_media_node('description'),
 | 
			
		||||
            'thumbnails': thumbnails,
 | 
			
		||||
            'timestamp': parse_iso8601(item.get('pubDate'), ' '),
 | 
			
		||||
            'timestamp': timestamp,
 | 
			
		||||
            'duration': int_or_none(media_content[0].get('@attributes', {}).get('duration')),
 | 
			
		||||
            'subtitles': subtitles,
 | 
			
		||||
            'formats': formats,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user