]> jfr.im git - yt-dlp.git/blob - yt_dlp/extractor/m6.py
9dcc60164290d15373e82efc1350f7b742e91594
[yt-dlp.git] / yt_dlp / extractor / m6.py
1 from .common import InfoExtractor
2
3
4 class M6IE(InfoExtractor):
5 IE_NAME = 'm6'
6 _VALID_URL = r'https?://(?:www\.)?m6\.fr/[^/]+/videos/(?P<id>\d+)-[^\.]+\.html'
7
8 _TEST = {
9 'url': 'http://www.m6.fr/emission-les_reines_du_shopping/videos/11323908-emeline_est_la_reine_du_shopping_sur_le_theme_ma_fete_d_8217_anniversaire.html',
10 'md5': '242994a87de2c316891428e0176bcb77',
11 'info_dict': {
12 'id': '11323908',
13 'ext': 'mp4',
14 'title': 'Emeline est la Reine du Shopping sur le thème « Ma fête d’anniversaire ! »',
15 'description': 'md5:1212ae8fb4b7baa4dc3886c5676007c2',
16 'duration': 100,
17 }
18 }
19
20 def _real_extract(self, url):
21 video_id = self._match_id(url)
22 return self.url_result('6play:%s' % video_id, 'SixPlay', video_id)