[ooyala] add better fallback values for domain and streams variables
This commit is contained in:
		
							parent
							
								
									66b4872747
								
							
						
					
					
						commit
						1ed2c4b378
					
				
					 1 changed files with 53 additions and 50 deletions
				
			
		| 
						 | 
				
			
			@ -1,12 +1,12 @@
 | 
			
		|||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import base64
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
from ..compat import (
 | 
			
		||||
    compat_b64decode,
 | 
			
		||||
    compat_str,
 | 
			
		||||
    compat_urllib_parse_urlencode,
 | 
			
		||||
)
 | 
			
		||||
from ..utils import (
 | 
			
		||||
    determine_ext,
 | 
			
		||||
| 
						 | 
				
			
			@ -21,9 +21,9 @@ from ..utils import (
 | 
			
		|||
class OoyalaBaseIE(InfoExtractor):
 | 
			
		||||
    _PLAYER_BASE = 'http://player.ooyala.com/'
 | 
			
		||||
    _CONTENT_TREE_BASE = _PLAYER_BASE + 'player_api/v1/content_tree/'
 | 
			
		||||
    _AUTHORIZATION_URL_TEMPLATE = _PLAYER_BASE + 'sas/player_api/v2/authorization/embed_code/%s/%s?'
 | 
			
		||||
    _AUTHORIZATION_URL_TEMPLATE = _PLAYER_BASE + 'sas/player_api/v2/authorization/embed_code/%s/%s'
 | 
			
		||||
 | 
			
		||||
    def _extract(self, content_tree_url, video_id, domain='example.org', supportedformats=None, embed_token=None):
 | 
			
		||||
    def _extract(self, content_tree_url, video_id, domain=None, supportedformats=None, embed_token=None):
 | 
			
		||||
        content_tree = self._download_json(content_tree_url, video_id)['content_tree']
 | 
			
		||||
        metadata = content_tree[list(content_tree)[0]]
 | 
			
		||||
        embed_code = metadata['embed_code']
 | 
			
		||||
| 
						 | 
				
			
			@ -31,19 +31,22 @@ class OoyalaBaseIE(InfoExtractor):
 | 
			
		|||
        title = metadata['title']
 | 
			
		||||
 | 
			
		||||
        auth_data = self._download_json(
 | 
			
		||||
            self._AUTHORIZATION_URL_TEMPLATE % (pcode, embed_code)
 | 
			
		||||
            + compat_urllib_parse_urlencode({
 | 
			
		||||
                'domain': domain,
 | 
			
		||||
            self._AUTHORIZATION_URL_TEMPLATE % (pcode, embed_code),
 | 
			
		||||
            video_id, headers=self.geo_verification_headers(), query={
 | 
			
		||||
                'domain': domain or 'player.ooyala.com',
 | 
			
		||||
                'supportedFormats': supportedformats or 'mp4,rtmp,m3u8,hds,dash,smooth',
 | 
			
		||||
                'embedToken': embed_token,
 | 
			
		||||
            }), video_id, headers=self.geo_verification_headers())
 | 
			
		||||
 | 
			
		||||
        cur_auth_data = auth_data['authorization_data'][embed_code]
 | 
			
		||||
            })['authorization_data'][embed_code]
 | 
			
		||||
 | 
			
		||||
        urls = []
 | 
			
		||||
        formats = []
 | 
			
		||||
        if cur_auth_data['authorized']:
 | 
			
		||||
            for stream in cur_auth_data['streams']:
 | 
			
		||||
        streams = auth_data.get('streams') or [{
 | 
			
		||||
            'delivery_type': 'hls',
 | 
			
		||||
            'url': {
 | 
			
		||||
                'data': base64.b64encode(('http://player.ooyala.com/hls/player/all/%s.m3u8' % embed_code).encode()).decode(),
 | 
			
		||||
            }
 | 
			
		||||
        }]
 | 
			
		||||
        for stream in streams:
 | 
			
		||||
            url_data = try_get(stream, lambda x: x['url']['data'], compat_str)
 | 
			
		||||
            if not url_data:
 | 
			
		||||
                continue
 | 
			
		||||
| 
						 | 
				
			
			@ -81,9 +84,9 @@ class OoyalaBaseIE(InfoExtractor):
 | 
			
		|||
                    'vbr': int_or_none(stream.get('video_bitrate')),
 | 
			
		||||
                    'fps': float_or_none(stream.get('framerate')),
 | 
			
		||||
                })
 | 
			
		||||
        else:
 | 
			
		||||
        if not formats and not auth_data.get('authorized'):
 | 
			
		||||
            raise ExtractorError('%s said: %s' % (
 | 
			
		||||
                self.IE_NAME, cur_auth_data['message']), expected=True)
 | 
			
		||||
                self.IE_NAME, auth_data['message']), expected=True)
 | 
			
		||||
        self._sort_formats(formats)
 | 
			
		||||
 | 
			
		||||
        subtitles = {}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue