[noovo] Fix extraction (closes #19230)
This commit is contained in:
		
							parent
							
								
									2b2da3ba10
								
							
						
					
					
						commit
						ba2e3730d1
					
				
					 1 changed files with 6 additions and 2 deletions
				
			
		| 
						 | 
					@ -57,7 +57,8 @@ class NoovoIE(InfoExtractor):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(url, video_id)
 | 
					        webpage = self._download_webpage(url, video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        bc_url = BrightcoveNewIE._extract_url(self, webpage)
 | 
					        brightcove_id = self._search_regex(
 | 
				
			||||||
 | 
					            r'data-video-id=["\'](\d+)', webpage, 'brightcove id')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        data = self._parse_json(
 | 
					        data = self._parse_json(
 | 
				
			||||||
            self._search_regex(
 | 
					            self._search_regex(
 | 
				
			||||||
| 
						 | 
					@ -89,7 +90,10 @@ class NoovoIE(InfoExtractor):
 | 
				
			||||||
        return {
 | 
					        return {
 | 
				
			||||||
            '_type': 'url_transparent',
 | 
					            '_type': 'url_transparent',
 | 
				
			||||||
            'ie_key': BrightcoveNewIE.ie_key(),
 | 
					            'ie_key': BrightcoveNewIE.ie_key(),
 | 
				
			||||||
            'url': smuggle_url(bc_url, {'geo_countries': ['CA']}),
 | 
					            'url': smuggle_url(
 | 
				
			||||||
 | 
					                self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id,
 | 
				
			||||||
 | 
					                {'geo_countries': ['CA']}),
 | 
				
			||||||
 | 
					            'id': brightcove_id,
 | 
				
			||||||
            'title': title,
 | 
					            'title': title,
 | 
				
			||||||
            'description': description,
 | 
					            'description': description,
 | 
				
			||||||
            'series': series,
 | 
					            'series': series,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue