mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[clubic] Rely on _match_id and _parse_json
This commit is contained in:
		| @@ -1,9 +1,6 @@ | ||||
| # coding: utf-8 | ||||
| from __future__ import unicode_literals | ||||
|  | ||||
| import json | ||||
| import re | ||||
|  | ||||
| from .common import InfoExtractor | ||||
| from ..utils import ( | ||||
|     clean_html, | ||||
| @@ -30,16 +27,14 @@ class ClubicIE(InfoExtractor): | ||||
|     }] | ||||
|  | ||||
|     def _real_extract(self, url): | ||||
|         mobj = re.match(self._VALID_URL, url) | ||||
|         video_id = mobj.group('id') | ||||
|         video_id = self._match_id(url) | ||||
|  | ||||
|         player_url = 'http://player.m6web.fr/v1/player/clubic/%s.html' % video_id | ||||
|         player_page = self._download_webpage(player_url, video_id) | ||||
|  | ||||
|         config_json = self._search_regex( | ||||
|         config = self._parse_json(self._search_regex( | ||||
|             r'(?m)M6\.Player\.config\s*=\s*(\{.+?\});$', player_page, | ||||
|             'configuration') | ||||
|         config = json.loads(config_json) | ||||
|             'configuration'), video_id) | ||||
|  | ||||
|         video_info = config['videoInfo'] | ||||
|         sources = config['sources'] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Déstin Reed
					Déstin Reed