aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/m6.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-06-09 17:54:27 -0500
committerJesús <heckyel@hyperbola.info>2021-06-09 17:54:27 -0500
commit27fe903c511691c078942bef5ee9a05a43b15c8f (patch)
tree50f30ab2ec749b965869518c0a28651f8677f0d3 /hypervideo_dl/extractor/m6.py
downloadhypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.tar.lz
hypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.tar.xz
hypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.zip
initial
Diffstat (limited to 'hypervideo_dl/extractor/m6.py')
-rw-r--r--hypervideo_dl/extractor/m6.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/hypervideo_dl/extractor/m6.py b/hypervideo_dl/extractor/m6.py
new file mode 100644
index 0000000..9806875
--- /dev/null
+++ b/hypervideo_dl/extractor/m6.py
@@ -0,0 +1,25 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+
+
+class M6IE(InfoExtractor):
+ IE_NAME = 'm6'
+ _VALID_URL = r'https?://(?:www\.)?m6\.fr/[^/]+/videos/(?P<id>\d+)-[^\.]+\.html'
+
+ _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):
+ video_id = self._match_id(url)
+ return self.url_result('6play:%s' % video_id, 'SixPlay', video_id)