You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
574 B

  1. #coding: utf-8
  2. from __future__ import unicode_literals
  3. from .mitele import MiTeleIE
  4. class TelecincoIE(MiTeleIE):
  5. IE_NAME = 'telecinco.es'
  6. _VALID_URL = r'https?://www\.telecinco\.es/[^/]+/[^/]+/[^/]+/(?P<episode>.*?)\.html'
  7. _TEST = {
  8. 'url': 'http://www.telecinco.es/robinfood/temporada-01/t01xp14/Bacalao-cocochas-pil-pil_0_1876350223.html',
  9. 'info_dict': {
  10. 'id': 'MDSVID20141015_0058',
  11. 'ext': 'mp4',
  12. 'title': 'Con Martín Berasategui, hacer un bacalao al ...',
  13. 'duration': 662,
  14. },
  15. }