logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

m6.py (896B)


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