mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[rmcdecouverte] Improve, bypass geo restriction and add support for live (closes #18697)
This commit is contained in:
		| @@ -1,18 +1,21 @@ | |||||||
| # coding: utf-8 | # coding: utf-8 | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
|  |  | ||||||
|  | import re | ||||||
|  |  | ||||||
| from .common import InfoExtractor | from .common import InfoExtractor | ||||||
| from .brightcove import BrightcoveLegacyIE | from .brightcove import BrightcoveLegacyIE | ||||||
| from ..compat import ( | from ..compat import ( | ||||||
|     compat_parse_qs, |     compat_parse_qs, | ||||||
|     compat_urlparse, |     compat_urlparse, | ||||||
| ) | ) | ||||||
|  | from ..utils import smuggle_url | ||||||
|  |  | ||||||
|  |  | ||||||
| class RMCDecouverteIE(InfoExtractor): | class RMCDecouverteIE(InfoExtractor): | ||||||
|     _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/.+/program_(?P<id>\d+)' |     _VALID_URL = r'https?://rmcdecouverte\.bfmtv\.com/(?:(?:[^/]+/)*program_(?P<id>\d+)|(?P<live_id>mediaplayer-direct))' | ||||||
|  |  | ||||||
|     _TEST = { |     _TESTS = [{ | ||||||
|         'url': 'https://rmcdecouverte.bfmtv.com/wheeler-dealers-occasions-a-saisir/program_2566/', |         'url': 'https://rmcdecouverte.bfmtv.com/wheeler-dealers-occasions-a-saisir/program_2566/', | ||||||
|         'info_dict': { |         'info_dict': { | ||||||
|             'id': '5983675500001', |             'id': '5983675500001', | ||||||
| @@ -27,12 +30,17 @@ class RMCDecouverteIE(InfoExtractor): | |||||||
|             'skip_download': True, |             'skip_download': True, | ||||||
|         }, |         }, | ||||||
|         'skip': 'only available for a week', |         'skip': 'only available for a week', | ||||||
|     } |     }, { | ||||||
|  |         # live, geo restricted, bypassable | ||||||
|  |         'url': 'https://rmcdecouverte.bfmtv.com/mediaplayer-direct/', | ||||||
|  |         'only_matching': True, | ||||||
|  |     }] | ||||||
|     BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1969646226001/default_default/index.html?videoId=%s' |     BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/1969646226001/default_default/index.html?videoId=%s' | ||||||
|  |  | ||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         video_id = self._match_id(url) |         mobj = re.match(self._VALID_URL, url) | ||||||
|         webpage = self._download_webpage(url, video_id) |         display_id = mobj.group('id') or mobj.group('live_id') | ||||||
|  |         webpage = self._download_webpage(url, display_id) | ||||||
|         brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage) |         brightcove_legacy_url = BrightcoveLegacyIE._extract_brightcove_url(webpage) | ||||||
|         if brightcove_legacy_url: |         if brightcove_legacy_url: | ||||||
|             brightcove_id = compat_parse_qs(compat_urlparse.urlparse( |             brightcove_id = compat_parse_qs(compat_urlparse.urlparse( | ||||||
| @@ -41,5 +49,7 @@ class RMCDecouverteIE(InfoExtractor): | |||||||
|             brightcove_id = self._search_regex( |             brightcove_id = self._search_regex( | ||||||
|                 r'data-video-id=["\'](\d+)', webpage, 'brightcove id') |                 r'data-video-id=["\'](\d+)', webpage, 'brightcove id') | ||||||
|         return self.url_result( |         return self.url_result( | ||||||
|             self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', |             smuggle_url( | ||||||
|             brightcove_id) |                 self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, | ||||||
|  |                 {'geo_countries': ['FR']}), | ||||||
|  |             'BrightcoveNew', brightcove_id) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․