mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[vrt] Make formats extraction non fatal (Closes #8587)
This commit is contained in:
		| @@ -73,11 +73,12 @@ class VRTIE(InfoExtractor): | ||||
|         if mobj: | ||||
|             formats.extend(self._extract_m3u8_formats( | ||||
|                 '%s/%s' % (mobj.group('server'), mobj.group('path')), | ||||
|                 video_id, 'mp4', m3u8_id='hls')) | ||||
|                 video_id, 'mp4', m3u8_id='hls', fatal=False)) | ||||
|         mobj = re.search(r'data-video-src="(?P<src>[^"]+)"', webpage) | ||||
|         if mobj: | ||||
|             formats.extend(self._extract_f4m_formats( | ||||
|                 '%s/manifest.f4m' % mobj.group('src'), video_id, f4m_id='hds')) | ||||
|                 '%s/manifest.f4m' % mobj.group('src'), | ||||
|                 video_id, f4m_id='hds', fatal=False)) | ||||
|         self._sort_formats(formats) | ||||
|  | ||||
|         title = self._og_search_title(webpage) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․