mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	[franceculture] Fix extraction (closes #24204)
This commit is contained in:
		@@ -31,7 +31,13 @@ class FranceCultureIE(InfoExtractor):
 | 
				
			|||||||
        webpage = self._download_webpage(url, display_id)
 | 
					        webpage = self._download_webpage(url, display_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_data = extract_attributes(self._search_regex(
 | 
					        video_data = extract_attributes(self._search_regex(
 | 
				
			||||||
            r'(?s)<div[^>]+class="[^"]*?(?:title-zone-diffusion|heading-zone-(?:wrapper|player-button))[^"]*?"[^>]*>.*?(<button[^>]+data-asset-source="[^"]+"[^>]+>)',
 | 
					            r'''(?sx)
 | 
				
			||||||
 | 
					                (?:
 | 
				
			||||||
 | 
					                    </h1>|
 | 
				
			||||||
 | 
					                    <div[^>]+class="[^"]*?(?:title-zone-diffusion|heading-zone-(?:wrapper|player-button))[^"]*?"[^>]*>
 | 
				
			||||||
 | 
					                ).*?
 | 
				
			||||||
 | 
					                (<button[^>]+data-asset-source="[^"]+"[^>]+>)
 | 
				
			||||||
 | 
					            ''',
 | 
				
			||||||
            webpage, 'video data'))
 | 
					            webpage, 'video data'))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        video_url = video_data['data-asset-source']
 | 
					        video_url = video_data['data-asset-source']
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user