mirror of
				https://code.hackerspace.pl/q3k/youtube-dl
				synced 2025-03-16 11:43:02 +00:00 
			
		
		
		
	[nbc] improve info extraction(fixes #16440)
This commit is contained in:
		
							parent
							
								
									07acdc5afc
								
							
						
					
					
						commit
						90b633f86b
					
				| @ -9,6 +9,7 @@ from .adobepass import AdobePassIE | |||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     find_xpath_attr, |     find_xpath_attr, | ||||||
|     smuggle_url, |     smuggle_url, | ||||||
|  |     try_get, | ||||||
|     unescapeHTML, |     unescapeHTML, | ||||||
|     update_url_query, |     update_url_query, | ||||||
|     int_or_none, |     int_or_none, | ||||||
| @ -78,10 +79,14 @@ class NBCIE(AdobePassIE): | |||||||
|     def _real_extract(self, url): |     def _real_extract(self, url): | ||||||
|         permalink, video_id = re.match(self._VALID_URL, url).groups() |         permalink, video_id = re.match(self._VALID_URL, url).groups() | ||||||
|         permalink = 'http' + permalink |         permalink = 'http' + permalink | ||||||
|         video_data = self._download_json( |         response = self._download_json( | ||||||
|             'https://api.nbc.com/v3/videos', video_id, query={ |             'https://api.nbc.com/v3/videos', video_id, query={ | ||||||
|                 'filter[permalink]': permalink, |                 'filter[permalink]': permalink, | ||||||
|             })['data'][0]['attributes'] |                 'fields[videos]': 'description,entitlement,episodeNumber,guid,keywords,seasonNumber,title,vChipRating', | ||||||
|  |                 'fields[shows]': 'shortTitle', | ||||||
|  |                 'include': 'show.shortTitle', | ||||||
|  |             }) | ||||||
|  |         video_data = response['data'][0]['attributes'] | ||||||
|         query = { |         query = { | ||||||
|             'mbr': 'true', |             'mbr': 'true', | ||||||
|             'manifest': 'm3u', |             'manifest': 'm3u', | ||||||
| @ -103,10 +108,11 @@ class NBCIE(AdobePassIE): | |||||||
|             'title': title, |             'title': title, | ||||||
|             'url': theplatform_url, |             'url': theplatform_url, | ||||||
|             'description': video_data.get('description'), |             'description': video_data.get('description'), | ||||||
|             'keywords': video_data.get('keywords'), |             'tags': video_data.get('keywords'), | ||||||
|             'season_number': int_or_none(video_data.get('seasonNumber')), |             'season_number': int_or_none(video_data.get('seasonNumber')), | ||||||
|             'episode_number': int_or_none(video_data.get('episodeNumber')), |             'episode_number': int_or_none(video_data.get('episodeNumber')), | ||||||
|             'series': video_data.get('showName'), |             'episode': title, | ||||||
|  |             'series': try_get(response, lambda x: x['included'][0]['attributes']['shortTitle']), | ||||||
|             'ie_key': 'ThePlatform', |             'ie_key': 'ThePlatform', | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Remita Amine
						Remita Amine