mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	This commit is contained in:
		| @@ -7,20 +7,40 @@ class LemondeIE(InfoExtractor): | |||||||
|     _VALID_URL = r'https?://(?:.+?\.)?lemonde\.fr/(?:[^/]+/)*(?P<id>[^/]+)\.html' |     _VALID_URL = r'https?://(?:.+?\.)?lemonde\.fr/(?:[^/]+/)*(?P<id>[^/]+)\.html' | ||||||
|     _TESTS = [{ |     _TESTS = [{ | ||||||
|         'url': 'http://www.lemonde.fr/police-justice/video/2016/01/19/comprendre-l-affaire-bygmalion-en-cinq-minutes_4849702_1653578.html', |         'url': 'http://www.lemonde.fr/police-justice/video/2016/01/19/comprendre-l-affaire-bygmalion-en-cinq-minutes_4849702_1653578.html', | ||||||
|         'md5': '01fb3c92de4c12c573343d63e163d302', |         'md5': 'da120c8722d8632eec6ced937536cc98', | ||||||
|         'info_dict': { |         'info_dict': { | ||||||
|             'id': 'lqm3kl', |             'id': 'lqm3kl', | ||||||
|             'ext': 'mp4', |             'ext': 'mp4', | ||||||
|             'title': "Comprendre l'affaire Bygmalion en 5 minutes", |             'title': "Comprendre l'affaire Bygmalion en 5 minutes", | ||||||
|             'thumbnail': r're:^https?://.*\.jpg', |             'thumbnail': r're:^https?://.*\.jpg', | ||||||
|             'duration': 320, |             'duration': 309, | ||||||
|             'upload_date': '20160119', |             'upload_date': '20160119', | ||||||
|             'timestamp': 1453194778, |             'timestamp': 1453194778, | ||||||
|             'uploader_id': '3pmkp', |             'uploader_id': '3pmkp', | ||||||
|         }, |         }, | ||||||
|  |     }, { | ||||||
|  |         # standard iframe embed | ||||||
|  |         'url': 'http://www.lemonde.fr/les-decodeurs/article/2016/10/18/tout-comprendre-du-ceta-le-petit-cousin-du-traite-transatlantique_5015920_4355770.html', | ||||||
|  |         'info_dict': { | ||||||
|  |             'id': 'uzsxms', | ||||||
|  |             'ext': 'mp4', | ||||||
|  |             'title': "CETA : quelles suites pour l'accord commercial entre l'Europe et le Canada ?", | ||||||
|  |             'thumbnail': r're:^https?://.*\.jpg', | ||||||
|  |             'duration': 325, | ||||||
|  |             'upload_date': '20161021', | ||||||
|  |             'timestamp': 1477044540, | ||||||
|  |             'uploader_id': '3pmkp', | ||||||
|  |         }, | ||||||
|  |         'params': { | ||||||
|  |             'skip_download': True, | ||||||
|  |         }, | ||||||
|     }, { |     }, { | ||||||
|         'url': 'http://redaction.actu.lemonde.fr/societe/video/2016/01/18/calais-debut-des-travaux-de-defrichement-dans-la-jungle_4849233_3224.html', |         'url': 'http://redaction.actu.lemonde.fr/societe/video/2016/01/18/calais-debut-des-travaux-de-defrichement-dans-la-jungle_4849233_3224.html', | ||||||
|         'only_matching': True, |         'only_matching': True, | ||||||
|  |     }, { | ||||||
|  |         # YouTube embeds | ||||||
|  |         'url': 'http://www.lemonde.fr/pixels/article/2016/12/09/pourquoi-pewdiepie-superstar-de-youtube-a-menace-de-fermer-sa-chaine_5046649_4408996.html', | ||||||
|  |         'only_matching': True, | ||||||
|     }] |     }] | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
| @@ -30,5 +50,9 @@ class LemondeIE(InfoExtractor): | |||||||
|  |  | ||||||
|         digiteka_url = self._proto_relative_url(self._search_regex( |         digiteka_url = self._proto_relative_url(self._search_regex( | ||||||
|             r'url\s*:\s*(["\'])(?P<url>(?:https?://)?//(?:www\.)?(?:digiteka\.net|ultimedia\.com)/deliver/.+?)\1', |             r'url\s*:\s*(["\'])(?P<url>(?:https?://)?//(?:www\.)?(?:digiteka\.net|ultimedia\.com)/deliver/.+?)\1', | ||||||
|             webpage, 'digiteka url', group='url')) |             webpage, 'digiteka url', group='url', default=None)) | ||||||
|         return self.url_result(digiteka_url, 'Digiteka') |  | ||||||
|  |         if digiteka_url: | ||||||
|  |             return self.url_result(digiteka_url, 'Digiteka') | ||||||
|  |  | ||||||
|  |         return self.url_result(url, 'Generic') | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․