| 
									
										
										
										
											2014-03-24 17:12:15 +01:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BYUtvIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?byutv\.org/(?:watch|player)/(?!event/)(?P<id>[0-9a-f-]+)(?:/(?P<display_id>[^/?#&]+))?' | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2014-11-05 15:43:53 +01:00
										 |  |  |         'url': 'http://www.byutv.org/watch/6587b9a3-89d2-42a6-a7f7-fd2f81840a7d/studio-c-season-5-episode-5', | 
					
						
							| 
									
										
										
										
											2014-03-24 17:12:15 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |             'id': 'ZvanRocTpW-G5_yZFeltTAMv6jxOU9KH', | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  |             'display_id': 'studio-c-season-5-episode-5', | 
					
						
							| 
									
										
										
										
											2014-03-24 17:12:15 +01:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2014-11-05 15:43:53 +01:00
										 |  |  |             'title': 'Season 5 Episode 5', | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |             'description': 'md5:1d31dc18ef4f075b28f6a65937d22c65', | 
					
						
							|  |  |  |             'thumbnail': r're:^https?://.*', | 
					
						
							| 
									
										
										
										
											2015-12-04 16:18:02 +01:00
										 |  |  |             'duration': 1486.486, | 
					
						
							| 
									
										
										
										
											2014-03-24 17:12:15 +01:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-05-24 16:42:22 +01:00
										 |  |  |         'params': { | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-05-24 11:24:29 +01:00
										 |  |  |         'add_ie': ['Ooyala'], | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.byutv.org/watch/6587b9a3-89d2-42a6-a7f7-fd2f81840a7d', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://www.byutv.org/player/27741493-dc83-40b0-8420-e7ae38a2ae98/byu-football-toledo-vs-byu-93016?listid=4fe0fee5-0d3c-4a29-b725-e4948627f472&listindex=0&q=toledo', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2014-03-24 17:12:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  |         mobj = re.match(self._VALID_URL, url) | 
					
						
							|  |  |  |         video_id = mobj.group('id') | 
					
						
							|  |  |  |         display_id = mobj.group('display_id') or video_id | 
					
						
							| 
									
										
										
										
											2014-03-24 17:12:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |         ep = self._download_json( | 
					
						
							|  |  |  |             'https://api.byutv.org/api3/catalog/getvideosforcontent', video_id, | 
					
						
							|  |  |  |             query={ | 
					
						
							|  |  |  |                 'contentid': video_id, | 
					
						
							| 
									
										
										
										
											2017-12-13 17:51:24 +01:00
										 |  |  |                 'channel': 'byutv', | 
					
						
							|  |  |  |                 'x-byutv-context': 'web$US', | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |             }, headers={ | 
					
						
							| 
									
										
										
										
											2017-12-13 17:51:24 +01:00
										 |  |  |                 'x-byutv-context': 'web$US', | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |                 'x-byutv-platformkey': 'xsaaw9c7y5', | 
					
						
							|  |  |  |             })['ooyalaVOD'] | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             '_type': 'url_transparent', | 
					
						
							|  |  |  |             'ie_key': 'Ooyala', | 
					
						
							|  |  |  |             'url': 'ooyala:%s' % ep['providerId'], | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'display_id': display_id, | 
					
						
							| 
									
										
										
										
											2017-12-13 23:14:30 +07:00
										 |  |  |             'title': ep.get('title'), | 
					
						
							| 
									
										
										
										
											2016-10-02 00:44:54 +07:00
										 |  |  |             'description': ep.get('description'), | 
					
						
							|  |  |  |             'thumbnail': ep.get('imageThumbnail'), | 
					
						
							|  |  |  |         } |