mirror of https://github.com/yt-dlp/yt-dlp.git
60 lines
2.0 KiB
Python
60 lines
2.0 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
from ..utils import (
|
|
smuggle_url,
|
|
)
|
|
|
|
|
|
class LA7IE(InfoExtractor):
|
|
IE_NAME = 'la7.it'
|
|
_VALID_URL = r'''(?x)(https?://)?(?:
|
|
(?:www\.)?la7\.it/([^/]+)/(?:rivedila7|video)/|
|
|
tg\.la7\.it/repliche-tgla7\?id=
|
|
)(?P<id>.+)'''
|
|
|
|
_TESTS = [{
|
|
# 'src' is a plain URL
|
|
'url': 'http://www.la7.it/crozza/video/inccool8-02-10-2015-163722',
|
|
'md5': '8b613ffc0c4bf9b9e377169fc19c214c',
|
|
'info_dict': {
|
|
'id': '0_42j6wd36',
|
|
'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',
|
|
},
|
|
}, {
|
|
'url': 'http://www.la7.it/omnibus/rivedila7/omnibus-news-02-07-2016-189077',
|
|
'only_matching': True,
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
if not url.startswith('http'):
|
|
url = '%s//%s' % (self.http_scheme(), url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
player_data = self._search_regex(
|
|
[r'(?s)videoParams\s*=\s*({.+?});', r'videoLa7\(({[^;]+})\);'],
|
|
webpage, 'player data')
|
|
vid = self._search_regex(r'vid\s*:\s*"(.+?)",', player_data, 'vid')
|
|
|
|
return {
|
|
'_type': 'url_transparent',
|
|
'url': smuggle_url('kaltura:103:%s' % vid, {
|
|
'service_url': 'http://nkdam.iltrovatore.it',
|
|
}),
|
|
'id': video_id,
|
|
'title': self._og_search_title(webpage, default=None),
|
|
'description': self._og_search_description(webpage, default=None),
|
|
'thumbnail': self._og_search_thumbnail(webpage, default=None),
|
|
'ie_key': 'Kaltura',
|
|
}
|