mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	| @@ -33,7 +33,7 @@ class N1InfoAssetIE(InfoExtractor): | ||||
| 
 | ||||
| class N1InfoIIE(InfoExtractor): | ||||
|     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 = [{ | ||||
|         # Youtube embedded | ||||
|         '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', | ||||
|             '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/', | ||||
|         'only_matching': True, | ||||
| @@ -105,19 +115,35 @@ class N1InfoIIE(InfoExtractor): | ||||
| 
 | ||||
|         title = self._html_search_regex(r'<h1[^>]+>(.+?)</h1>', webpage, 'title') | ||||
|         timestamp = unified_timestamp(self._html_search_meta('article:published_time', webpage)) | ||||
| 
 | ||||
|         videos = re.findall(r'(?m)(<video[^>]+>)', webpage) | ||||
|         plugin_data = self._html_search_meta('BridPlugin', webpage) | ||||
|         entries = [] | ||||
|         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'}) | ||||
|         if plugin_data: | ||||
|             site_id = self._html_search_regex(r'site:(\d+)', webpage, 'site id') | ||||
|             for video_data in re.findall(r'\$bp\("Brid_\d+", (.+)\);', webpage): | ||||
|                 video_id = self._parse_json(video_data, title)['video'] | ||||
|                 entries.append({ | ||||
|                     'id': video_id, | ||||
|                     'title': title, | ||||
|                     'timestamp': timestamp, | ||||
|                     'thumbnail': self._html_search_meta('thumbnailURL', webpage), | ||||
|                     '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) | ||||
|         for embedded_video in embedded_videos: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 u-spec-png
					u-spec-png