mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-08 01:13:15 +00:00
parent
69b03f84f8
commit
8ac5b6d96a
|
@ -33,7 +33,7 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
class N1InfoIIE(InfoExtractor):
|
class N1InfoIIE(InfoExtractor):
|
||||||
IE_NAME = 'N1Info:article'
|
IE_NAME = 'N1Info:article'
|
||||||
_VALID_URL = r'https?://(?:(?:(?:ba|rs|hr)\.)?n1info\.(?:com|si)|nova\.rs)/(?:[^/]+/){1,2}(?P<id>[^/]+)'
|
_VALID_URL = r'https?://(?:(?:\w+\.)?n1info\.\w+|nova\.rs)/(?:[^/?#]+/){1,2}(?P<id>[^/?#]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
# Youtube embedded
|
# Youtube embedded
|
||||||
'url': 'https://rs.n1info.com/sport-klub/tenis/kako-je-djokovic-propustio-istorijsku-priliku-video/',
|
'url': 'https://rs.n1info.com/sport-klub/tenis/kako-je-djokovic-propustio-istorijsku-priliku-video/',
|
||||||
|
@ -94,6 +94,16 @@ class N1InfoIIE(InfoExtractor):
|
||||||
'upload_date': '20211102',
|
'upload_date': '20211102',
|
||||||
'timestamp': 1635861677,
|
'timestamp': 1635861677,
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
'url': 'https://n1info.rs/vesti/cuta-biti-u-kosovskoj-mitrovici-znaci-da-te-docekaju-eksplozivnim-napravama/',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '1332368',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': 'Ćuta: Biti u Kosovskoj Mitrovici znači da te dočekaju eksplozivnim napravama',
|
||||||
|
'upload_date': '20230620',
|
||||||
|
'timestamp': 1687290536,
|
||||||
|
'thumbnail': 'https://cdn.brid.tv/live/partners/26827/snapshot/1332368_th_6492013a8356f_1687290170.jpg'
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://hr.n1info.com/vijesti/pravobraniteljica-o-ubojstvu-u-zagrebu-radi-se-o-doista-nezapamcenoj-situaciji/',
|
'url': 'https://hr.n1info.com/vijesti/pravobraniteljica-o-ubojstvu-u-zagrebu-radi-se-o-doista-nezapamcenoj-situaciji/',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
|
@ -105,19 +115,35 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
title = self._html_search_regex(r'<h1[^>]+>(.+?)</h1>', webpage, 'title')
|
title = self._html_search_regex(r'<h1[^>]+>(.+?)</h1>', webpage, 'title')
|
||||||
timestamp = unified_timestamp(self._html_search_meta('article:published_time', webpage))
|
timestamp = unified_timestamp(self._html_search_meta('article:published_time', webpage))
|
||||||
|
plugin_data = self._html_search_meta('BridPlugin', webpage)
|
||||||
videos = re.findall(r'(?m)(<video[^>]+>)', webpage)
|
|
||||||
entries = []
|
entries = []
|
||||||
for video in videos:
|
if plugin_data:
|
||||||
video_data = extract_attributes(video)
|
site_id = self._html_search_regex(r'site:(\d+)', webpage, 'site id')
|
||||||
entries.append({
|
for video_data in re.findall(r'\$bp\("Brid_\d+", (.+)\);', webpage):
|
||||||
'_type': 'url_transparent',
|
video_id = self._parse_json(video_data, title)['video']
|
||||||
'url': video_data.get('data-url'),
|
entries.append({
|
||||||
'id': video_data.get('id'),
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'thumbnail': video_data.get('data-thumbnail'),
|
'timestamp': timestamp,
|
||||||
'timestamp': timestamp,
|
'thumbnail': self._html_search_meta('thumbnailURL', webpage),
|
||||||
'ie_key': 'N1InfoAsset'})
|
'formats': self._extract_m3u8_formats(
|
||||||
|
f'https://cdn-uc.brid.tv/live/partners/{site_id}/streaming/{video_id}/{video_id}.m3u8',
|
||||||
|
video_id, fatal=False),
|
||||||
|
})
|
||||||
|
else:
|
||||||
|
# Old player still present in older articles
|
||||||
|
videos = re.findall(r'(?m)(<video[^>]+>)', webpage)
|
||||||
|
for video in videos:
|
||||||
|
video_data = extract_attributes(video)
|
||||||
|
entries.append({
|
||||||
|
'_type': 'url_transparent',
|
||||||
|
'url': video_data.get('data-url'),
|
||||||
|
'id': video_data.get('id'),
|
||||||
|
'title': title,
|
||||||
|
'thumbnail': video_data.get('data-thumbnail'),
|
||||||
|
'timestamp': timestamp,
|
||||||
|
'ie_key': 'N1InfoAsset',
|
||||||
|
})
|
||||||
|
|
||||||
embedded_videos = re.findall(r'(<iframe[^>]+>)', webpage)
|
embedded_videos = re.findall(r'(<iframe[^>]+>)', webpage)
|
||||||
for embedded_video in embedded_videos:
|
for embedded_video in embedded_videos:
|
||||||
|
|
Loading…
Reference in a new issue