youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit d5e7657fe2c045545e3cdc089413661befad8b4c
parent f84ce1ebaf930f5fc422e4fab77fa9c7c86a999a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 16 Sep 2015 22:37:01 +0600

[telecinco] Add support or cuatro.com

Diffstat:
Myoutube_dl/extractor/telecinco.py | 13+++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/telecinco.py b/youtube_dl/extractor/telecinco.py @@ -18,7 +18,7 @@ from ..utils import ( class TelecincoIE(InfoExtractor): IE_NAME = 'telecinco.es' - _VALID_URL = r'https?://www\.telecinco\.es/(?:[^/]+/)+(?P<id>.+?)\.html' + _VALID_URL = r'https?://www\.(?:telecinco\.es|cuatro\.com)/(?:[^/]+/)+(?P<id>.+?)\.html' _TESTS = [{ 'url': 'http://www.telecinco.es/robinfood/temporada-01/t01xp14/Bacalao-cocochas-pil-pil_0_1876350223.html', @@ -33,6 +33,15 @@ class TelecincoIE(InfoExtractor): 'skip_download': True, }, }, { + 'url': 'http://www.cuatro.com/deportes/futbol/barcelona/Leo_Messi-Champions-Roma_2_2052780128.html', + 'md5': '0a5b9f3cc8b074f50a0578f823a12694', + 'info_dict': { + 'id': 'MDSVID20150916_0128', + 'ext': 'mp4', + 'title': '¿Quién es este ex futbolista con el que hablan ...', + 'duration': 79, + }, + }, { 'url': 'http://www.telecinco.es/informativos/nacional/Pablo_Iglesias-Informativos_Telecinco-entrevista-Pedro_Piqueras_2_1945155182.html', 'only_matching': True, }, { @@ -66,7 +75,7 @@ class TelecincoIE(InfoExtractor): transform_source=strip_jsonp ) formats = self._extract_m3u8_formats( - token_info['tokenizedUrl'], episode, ext='mp4') + token_info['tokenizedUrl'], episode, ext='mp4', entry_protocol='m3u8_native') return { 'id': embed_data['videoId'],