mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 09:17:07 -05:00 
			
		
		
		
	[canalplus] Add fallback for video id (closes #11764)
This commit is contained in:
		@@ -107,7 +107,7 @@ class CanalplusIE(InfoExtractor):
 | 
				
			|||||||
            [r'<canal:player[^>]+?videoId=(["\'])(?P<id>\d+)',
 | 
					            [r'<canal:player[^>]+?videoId=(["\'])(?P<id>\d+)',
 | 
				
			||||||
             r'id=["\']canal_video_player(?P<id>\d+)',
 | 
					             r'id=["\']canal_video_player(?P<id>\d+)',
 | 
				
			||||||
             r'data-video=["\'](?P<id>\d+)'],
 | 
					             r'data-video=["\'](?P<id>\d+)'],
 | 
				
			||||||
            webpage, 'video id', group='id')
 | 
					            webpage, 'video id', default=mobj.group('vid'), group='id')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        info_url = self._VIDEO_INFO_TEMPLATE % (site_id, video_id)
 | 
					        info_url = self._VIDEO_INFO_TEMPLATE % (site_id, video_id)
 | 
				
			||||||
        video_data = self._download_json(info_url, video_id, 'Downloading video JSON')
 | 
					        video_data = self._download_json(info_url, video_id, 'Downloading video JSON')
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user