mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-08-22 03:11:41 +00:00
73 lines
2.2 KiB
Python
73 lines
2.2 KiB
Python
from .common import InfoExtractor
|
|
|
|
|
|
class LcpPlayIE(InfoExtractor):
|
|
_WORKING = False
|
|
_VALID_URL = r'https?://play\.lcp\.fr/embed/(?P<id>[^/]+)/(?P<account_id>[^/]+)/[^/]+/[^/]+'
|
|
_TESTS = [{
|
|
'url': 'http://play.lcp.fr/embed/327336/131064/darkmatter/0',
|
|
'md5': 'b8bd9298542929c06c1c15788b1f277a',
|
|
'info_dict': {
|
|
'id': '327336',
|
|
'ext': 'mp4',
|
|
'title': '327336',
|
|
'timestamp': 1456391602,
|
|
'upload_date': '20160225',
|
|
},
|
|
'params': {
|
|
'skip_download': True,
|
|
},
|
|
}]
|
|
|
|
|
|
class LcpIE(InfoExtractor):
|
|
_WORKING = False
|
|
_VALID_URL = r'https?://(?:www\.)?lcp\.fr/(?:[^/]+/)*(?P<id>[^/]+)'
|
|
_TESTS = [{
|
|
# dailymotion live stream
|
|
'url': 'http://www.lcp.fr/le-direct',
|
|
'info_dict': {
|
|
'id': 'xji3qy',
|
|
'ext': 'mp4',
|
|
'title': 'La Chaine Parlementaire (LCP), Live TNT',
|
|
'description': 'md5:5c69593f2de0f38bd9a949f2c95e870b',
|
|
'uploader': 'LCP',
|
|
'uploader_id': 'xbz33d',
|
|
'timestamp': 1308923058,
|
|
'upload_date': '20110624',
|
|
},
|
|
'params': {
|
|
# m3u8 live stream
|
|
'skip_download': True,
|
|
},
|
|
}, {
|
|
'url': 'http://www.lcp.fr/emissions/277792-les-volontaires',
|
|
'only_matching': True,
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
display_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
play_url = self._search_regex(
|
|
rf'<iframe[^>]+src=(["\'])(?P<url>{LcpPlayIE._VALID_URL}?(?:(?!\1).)*)\1',
|
|
webpage, 'play iframe', default=None, group='url')
|
|
|
|
if not play_url:
|
|
return self.url_result(url, 'Generic')
|
|
|
|
title = self._og_search_title(webpage, default=None) or self._html_search_meta(
|
|
'twitter:title', webpage, fatal=True)
|
|
description = self._html_search_meta(
|
|
('description', 'twitter:description'), webpage)
|
|
|
|
return {
|
|
'_type': 'url_transparent',
|
|
'ie_key': LcpPlayIE.ie_key(),
|
|
'url': play_url,
|
|
'display_id': display_id,
|
|
'title': title,
|
|
'description': description,
|
|
}
|