2016-10-02 11:39:18 +00:00
|
|
|
|
# coding: utf-8
|
2014-02-04 15:35:22 +00:00
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class M6IE(InfoExtractor):
|
|
|
|
|
IE_NAME = 'm6'
|
2016-03-21 15:36:32 +00:00
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?m6\.fr/[^/]+/videos/(?P<id>\d+)-[^\.]+\.html'
|
2014-02-04 15:35:22 +00:00
|
|
|
|
|
|
|
|
|
_TEST = {
|
|
|
|
|
'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',
|
|
|
|
|
'md5': '242994a87de2c316891428e0176bcb77',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': '11323908',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Emeline est la Reine du Shopping sur le thème « Ma fête d’anniversaire ! »',
|
|
|
|
|
'description': 'md5:1212ae8fb4b7baa4dc3886c5676007c2',
|
|
|
|
|
'duration': 100,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2016-06-30 12:50:49 +00:00
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
return self.url_result('6play:%s' % video_id, 'SixPlay', video_id)
|