Merge remote-tracking branch 'origin/master'
This commit is contained in:
		
						commit
						f92259c026
					
				| @ -8,6 +8,7 @@ from .common import InfoExtractor | |||||||
| from ..utils import ( | from ..utils import ( | ||||||
|     HEADRequest, |     HEADRequest, | ||||||
|     unified_strdate, |     unified_strdate, | ||||||
|  |     ExtractorError, | ||||||
| ) | ) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| @ -35,7 +36,15 @@ class ORFIE(InfoExtractor): | |||||||
|         data_json = self._search_regex( |         data_json = self._search_regex( | ||||||
|             r'initializeAdworx\((.+?)\);\n', webpage, 'video info') |             r'initializeAdworx\((.+?)\);\n', webpage, 'video info') | ||||||
|         all_data = json.loads(data_json) |         all_data = json.loads(data_json) | ||||||
|         sdata = all_data[0]['values']['segments'] | 
 | ||||||
|  |         def get_segments(all_data): | ||||||
|  |             for data in all_data: | ||||||
|  |                 if data['name'] == 'Tracker::EPISODE_DETAIL_PAGE_OVER_PROGRAM': | ||||||
|  |                     return data['values']['segments'] | ||||||
|  | 
 | ||||||
|  |         sdata = get_segments(all_data) | ||||||
|  |         if not sdata: | ||||||
|  |             raise ExtractorError('Unable to extract segments') | ||||||
| 
 | 
 | ||||||
|         def quality_to_int(s): |         def quality_to_int(s): | ||||||
|             m = re.search('([0-9]+)', s) |             m = re.search('([0-9]+)', s) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user