youtube-dl

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

commit dafafe7cf15918df97a8eca7d436f957f8d6ad80
parent 81953d1ae53bc5b3344243480316d751004a4d40
Author: Remita Amine <remitamine@gmail.com>
Date:   Mon,  4 Jul 2016 17:59:03 +0100

[la7] extract more info from a kaltura custom server

Diffstat:
Myoutube_dl/extractor/la7.py | 29++++++++++-------------------
1 file changed, 10 insertions(+), 19 deletions(-)

diff --git a/youtube_dl/extractor/la7.py b/youtube_dl/extractor/la7.py @@ -3,8 +3,8 @@ from __future__ import unicode_literals from .common import InfoExtractor from ..utils import ( - determine_ext, js_to_json, + smuggle_url, ) @@ -18,13 +18,16 @@ class LA7IE(InfoExtractor): _TESTS = [{ # 'src' is a plain URL 'url': 'http://www.la7.it/crozza/video/inccool8-02-10-2015-163722', - 'md5': '6054674766e7988d3e02f2148ff92180', + 'md5': '8b613ffc0c4bf9b9e377169fc19c214c', 'info_dict': { 'id': 'inccool8-02-10-2015-163722', 'ext': 'mp4', 'title': 'Inc.Cool8', 'description': 'Benvenuti nell\'incredibile mondo della INC. COOL. 8. dove “INC.” sta per “Incorporated” “COOL” sta per “fashion” ed Eight sta per il gesto atletico', 'thumbnail': 're:^https?://.*', + 'uploader_id': 'kdla7pillole@iltrovatore.it', + 'timestamp': 1443814869, + 'upload_date': '20151002', }, }, { # 'src' is a dictionary @@ -49,26 +52,14 @@ class LA7IE(InfoExtractor): self._search_regex(r'videoLa7\(({[^;]+})\);', webpage, 'player data'), video_id, transform_source=js_to_json) - source = player_data['src'] - source_urls = source.values() if isinstance(source, dict) else [source] - - formats = [] - for source_url in source_urls: - ext = determine_ext(source_url) - if ext == 'm3u8': - formats.extend(self._extract_m3u8_formats( - source_url, video_id, ext='mp4', - entry_protocol='m3u8_native', m3u8_id='hls')) - else: - formats.append({ - 'url': source_url, - }) - self._sort_formats(formats) - return { + '_type': 'url_transparent', + 'url': smuggle_url('kaltura:103:%s' % player_data['vid'], { + 'service_url': 'http://kdam.iltrovatore.it', + }), 'id': video_id, 'title': player_data['title'], 'description': self._og_search_description(webpage, default=None), 'thumbnail': player_data.get('poster'), - 'formats': formats, + 'ie_key': 'Kaltura', }