mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[arte] Fix upload date extraction
This commit is contained in:
		@@ -138,6 +138,7 @@ class TestUtil(unittest.TestCase):
 | 
				
			|||||||
        self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
 | 
					        self.assertEqual(unified_strdate('Dec 14, 2012'), '20121214')
 | 
				
			||||||
        self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
 | 
					        self.assertEqual(unified_strdate('2012/10/11 01:56:38 +0000'), '20121011')
 | 
				
			||||||
        self.assertEqual(unified_strdate('1968-12-10'), '19681210')
 | 
					        self.assertEqual(unified_strdate('1968-12-10'), '19681210')
 | 
				
			||||||
 | 
					        self.assertEqual(unified_strdate('28/01/2014 21:00:00 +0100'), '20140128')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def test_find_xpath_attr(self):
 | 
					    def test_find_xpath_attr(self):
 | 
				
			||||||
        testxml = '''<root>
 | 
					        testxml = '''<root>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,11 +86,15 @@ class ArteTVPlus7IE(InfoExtractor):
 | 
				
			|||||||
        info = self._download_json(json_url, video_id)
 | 
					        info = self._download_json(json_url, video_id)
 | 
				
			||||||
        player_info = info['videoJsonPlayer']
 | 
					        player_info = info['videoJsonPlayer']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        upload_date_str = player_info.get('shootingDate')
 | 
				
			||||||
 | 
					        if not upload_date_str:
 | 
				
			||||||
 | 
					            upload_date_str = player_info.get('VDA', '').split(' ')[0]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        info_dict = {
 | 
					        info_dict = {
 | 
				
			||||||
            'id': player_info['VID'],
 | 
					            'id': player_info['VID'],
 | 
				
			||||||
            'title': player_info['VTI'],
 | 
					            'title': player_info['VTI'],
 | 
				
			||||||
            'description': player_info.get('VDE'),
 | 
					            'description': player_info.get('VDE'),
 | 
				
			||||||
            'upload_date': unified_strdate(player_info.get('VDA', '').split(' ')[0]),
 | 
					            'upload_date': unified_strdate(upload_date_str),
 | 
				
			||||||
            'thumbnail': player_info.get('programImage') or player_info.get('VTU', {}).get('IUR'),
 | 
					            'thumbnail': player_info.get('programImage') or player_info.get('VTU', {}).get('IUR'),
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -890,6 +890,7 @@ def unified_strdate(date_str):
 | 
				
			|||||||
        '%d/%m/%Y',
 | 
					        '%d/%m/%Y',
 | 
				
			||||||
        '%d/%m/%y',
 | 
					        '%d/%m/%y',
 | 
				
			||||||
        '%Y/%m/%d %H:%M:%S',
 | 
					        '%Y/%m/%d %H:%M:%S',
 | 
				
			||||||
 | 
					        '%d/%m/%Y %H:%M:%S',
 | 
				
			||||||
        '%Y-%m-%d %H:%M:%S',
 | 
					        '%Y-%m-%d %H:%M:%S',
 | 
				
			||||||
        '%d.%m.%Y %H:%M',
 | 
					        '%d.%m.%Y %H:%M',
 | 
				
			||||||
        '%d.%m.%Y %H.%M',
 | 
					        '%d.%m.%Y %H.%M',
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user