mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-10-31 22:44:32 +01:00
[internazionale] Fix extraction of non-available-abroad videos
This commit is contained in:
parent
9e21e6d96b
commit
73f3bdbeb4
@ -7,7 +7,7 @@ from ..utils import unified_timestamp
|
|||||||
|
|
||||||
class InternazionaleIE(InfoExtractor):
|
class InternazionaleIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?internazionale\.it/video/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
_VALID_URL = r'https?://(?:www\.)?internazionale\.it/video/(?:[^/]+/)*(?P<id>[^/?#&]+)'
|
||||||
_TEST = {
|
_TESTS = [{
|
||||||
'url': 'https://www.internazionale.it/video/2015/02/19/richard-linklater-racconta-una-scena-di-boyhood',
|
'url': 'https://www.internazionale.it/video/2015/02/19/richard-linklater-racconta-una-scena-di-boyhood',
|
||||||
'md5': '3e39d32b66882c1218e305acbf8348ca',
|
'md5': '3e39d32b66882c1218e305acbf8348ca',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -23,7 +23,23 @@ class InternazionaleIE(InfoExtractor):
|
|||||||
'params': {
|
'params': {
|
||||||
'format': 'bestvideo',
|
'format': 'bestvideo',
|
||||||
},
|
},
|
||||||
}
|
}, {
|
||||||
|
'url': 'https://www.internazionale.it/video/2018/08/29/telefono-stare-con-noi-stessi',
|
||||||
|
'md5': '9db8663704cab73eb972d1cee0082c79',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '761344',
|
||||||
|
'display_id': 'telefono-stare-con-noi-stessi',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Usiamo il telefono per evitare di stare con noi stessi',
|
||||||
|
'description': 'md5:75ccfb0d6bcefc6e7428c68b4aa1fe44',
|
||||||
|
'timestamp': 1535528954,
|
||||||
|
'upload_date': '20180829',
|
||||||
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'format': 'bestvideo',
|
||||||
|
},
|
||||||
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
@ -40,8 +56,13 @@ class InternazionaleIE(InfoExtractor):
|
|||||||
DATA_RE % 'job-id', webpage, 'video id', group='value')
|
DATA_RE % 'job-id', webpage, 'video id', group='value')
|
||||||
video_path = self._search_regex(
|
video_path = self._search_regex(
|
||||||
DATA_RE % 'video-path', webpage, 'video path', group='value')
|
DATA_RE % 'video-path', webpage, 'video path', group='value')
|
||||||
|
video_available_abroad = self._search_regex(
|
||||||
|
DATA_RE % 'video-available_abroad', webpage,
|
||||||
|
'video available aboard', default='1', group='value')
|
||||||
|
video_available_abroad = video_available_abroad == '1'
|
||||||
|
|
||||||
video_base = 'https://video.internazionale.it/%s/%s.' % (video_path, video_id)
|
video_base = 'https://video%s.internazionale.it/%s/%s.' % \
|
||||||
|
('' if video_available_abroad else '-ita', video_path, video_id)
|
||||||
|
|
||||||
formats = self._extract_m3u8_formats(
|
formats = self._extract_m3u8_formats(
|
||||||
video_base + 'm3u8', display_id, 'mp4',
|
video_base + 'm3u8', display_id, 'mp4',
|
||||||
|
Loading…
Reference in New Issue
Block a user