mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 06:47:07 -05:00 
			
		
		
		
	[arte:future] Switch to search_regex for now (Closes #5801)
				
					
				
			This commit is contained in:
		@@ -195,7 +195,9 @@ class ArteTVFutureIE(ArteTVPlus7IE):
 | 
				
			|||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        anchor_id, lang = self._extract_url_info(url)
 | 
					        anchor_id, lang = self._extract_url_info(url)
 | 
				
			||||||
        webpage = self._download_webpage(url, anchor_id)
 | 
					        webpage = self._download_webpage(url, anchor_id)
 | 
				
			||||||
        row = get_element_by_id(anchor_id, webpage)
 | 
					        row = self._search_regex(
 | 
				
			||||||
 | 
					            r'(?s)id="%s"[^>]*>.+?(<div[^>]*arte_vp_url[^>]*>)' % anchor_id,
 | 
				
			||||||
 | 
					            webpage, 'row')
 | 
				
			||||||
        return self._extract_from_webpage(row, anchor_id, lang)
 | 
					        return self._extract_from_webpage(row, anchor_id, lang)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user