1 from __future__ 
import unicode_literals
 
   6 from .common 
import InfoExtractor
 
  21 class UstreamIE(InfoExtractor
): 
  22     _VALID_URL 
= r
'https?://(?:www\.)?ustream\.tv/(?P<type>recorded|embed|embed/recorded)/(?P<id>\d+)' 
  25         'url': 'http://www.ustream.tv/recorded/20274954', 
  26         'md5': '088f151799e8f572f84eb62f17d73e5c', 
  30             'title': 'Young Americans for Liberty February 7, 2012 2:28 AM', 
  31             'description': 'Young Americans for Liberty February 7, 2012 2:28 AM', 
  32             'timestamp': 1328577035, 
  33             'upload_date': '20120207', 
  34             'uploader': 'yaliberty', 
  35             'uploader_id': '6780869', 
  38         # From http://sportscanada.tv/canadagames/index.php/week2/figure-skating/444 
  39         # Title and uploader available only from params JSON 
  40         'url': 'http://www.ustream.tv/embed/recorded/59307601?ub=ff0000&lc=ff0000&oc=ffffff&uc=ffffff&v=3&wmode=direct', 
  41         'md5': '5a2abf40babeac9812ed20ae12d34e10', 
  45             'title': '-CG11- Canada Games Figure Skating', 
  46             'uploader': 'sportscanadatv', 
  48         'skip': 'This Pro Broadcaster has chosen to remove this video from the ustream.tv site.', 
  50         'url': 'http://www.ustream.tv/embed/10299409', 
  56         'url': 'http://www.ustream.tv/recorded/91343263', 
  60             'title': 'GitHub Universe - General Session - Day 1', 
  61             'upload_date': '20160914', 
  62             'description': 'GitHub Universe - General Session - Day 1', 
  63             'timestamp': 1473872730, 
  64             'uploader': 'wa0dnskeqkr', 
  65             'uploader_id': '38977840', 
  68             'skip_download': True,  # m3u8 download 
  73     def _extract_url(webpage
): 
  75             r
'<iframe[^>]+?src=(["\'])(?P
<url
>http
://www\
.ustream\
.tv
/embed
/.+?
)\
1', webpage) 
  77             return mobj.group('url
') 
  79     def _get_stream_info(self, url, video_id, app_id_ver, extra_note=None): 
  83         rnd = random.randrange 
  88         conn_info = self._download_json( 
  89             'http
://r
%d-1-%s-recorded-lp
-live
.ums
.ustream
.tv
/1/ustream
' % (rnd(1e8), video_id), 
  90             video_id, note='Downloading connection info
' + extra_note, 
  93                 'appId
': app_id_ver[0], 
  94                 'appVersion
': app_id_ver[1], 
  95                 'rsid
': '%s:%s' % (num_to_hex(rnd(1e8)), num_to_hex(rnd(1e8))), 
  96                 'rpin
': '_rpin
.%d' % rnd(1e15), 
  99                 'application
': 'recorded
', 
 101         host = conn_info[0]['args
'][0]['host
'] 
 102         connection_id = conn_info[0]['args
'][0]['connectionId
'] 
 104         return self._download_json( 
 105             'http
://%s/1/ustream?connectionId
=%s' % (host, connection_id), 
 106             video_id, note='Downloading stream info
' + extra_note) 
 108     def _get_streams(self, url, video_id, app_id_ver): 
 109         # Sometimes the return dict does not have 'stream
' 
 110         for trial_count in range(3): 
 111             stream_info = self._get_stream_info( 
 112                 url, video_id, app_id_ver, 
 113                 extra_note=' (try %d)' % (trial_count + 1) if trial_count > 0 else '') 
 114             if 'stream
' in stream_info[0]['args
'][0]: 
 115                 return stream_info[0]['args
'][0]['stream
'] 
 118     def _parse_segmented_mp4(self, dash_stream_info): 
 119         def resolve_dash_template(template, idx, chunk_hash): 
 120             return template.replace('%', compat_str(idx), 1).replace('%', chunk_hash) 
 123         for stream in dash_stream_info['streams
']: 
 124             # Use only one provider to avoid too many formats 
 125             provider = dash_stream_info['providers
'][0] 
 127                 'url
': resolve_dash_template( 
 128                     provider['url
'] + stream['initUrl
'], 0, dash_stream_info['hashes
']['0']) 
 130             for idx in range(dash_stream_info['videoLength
'] // dash_stream_info['chunkTime
']): 
 132                     'url
': resolve_dash_template( 
 133                         provider['url
'] + stream['segmentUrl
'], idx, 
 134                         dash_stream_info['hashes
'][compat_str(idx // 10 * 10)]) 
 136             content_type = stream['contentType
'] 
 137             kind = content_type.split('/')[0] 
 139                 'format_id
': '-'.join(filter(None, [ 
 140                     'dash
', kind, str_or_none(stream.get('bitrate
'))])), 
 141                 'protocol
': 'http_dash_segments
', 
 142                 # TODO: generate a MPD doc for external players? 
 143                 'url
': encode_data_uri(b'<MPD
/>', 'text
/xml
'), 
 144                 'ext
': mimetype2ext(content_type), 
 145                 'height
': stream.get('height
'), 
 146                 'width
': stream.get('width
'), 
 147                 'fragments
': fragments, 
 151                     'vcodec
': stream.get('codec
'), 
 153                     'vbr
': stream.get('bitrate
'), 
 158                     'acodec
': stream.get('codec
'), 
 159                     'abr
': stream.get('bitrate
'), 
 164     def _real_extract(self, url): 
 165         m = re.match(self._VALID_URL, url) 
 166         video_id = m.group('id') 
 168         # some sites use this embed format (see: https://github.com/rg3/youtube-dl/issues/2990) 
 169         if m.group('type') == 'embed
/recorded
': 
 170             video_id = m.group('id') 
 171             desktop_url = 'http
://www
.ustream
.tv
/recorded
/' + video_id 
 172             return self.url_result(desktop_url, 'Ustream
') 
 173         if m.group('type') == 'embed
': 
 174             video_id = m.group('id') 
 175             webpage = self._download_webpage(url, video_id) 
 176             content_video_ids = self._parse_json(self._search_regex( 
 177                 r'ustream\
.vars\
.offAirContentVideoIds
=([^
;]+);', webpage, 
 178                 'content video IDs
'), video_id) 
 179             return self.playlist_result( 
 180                 map(lambda u: self.url_result('http
://www
.ustream
.tv
/recorded
/' + u, 'Ustream
'), content_video_ids), 
 183         params = self._download_json( 
 184             'https
://api
.ustream
.tv
/videos
/%s.json
' % video_id, video_id) 
 186         error = params.get('error
') 
 188             raise ExtractorError( 
 189                 '%s returned error
: %s' % (self.IE_NAME, error), expected=True) 
 191         video = params['video
'] 
 193         title = video['title
'] 
 194         filesize = float_or_none(video.get('file_size
')) 
 200             'filesize
': filesize, 
 201         } for format_id, video_url in video['media_urls
'].items() if video_url] 
 204             hls_streams = self._get_streams(url, video_id, app_id_ver=(11, 2)) 
 206                 # m3u8_native leads to intermittent ContentTooShortError 
 207                 formats.extend(self._extract_m3u8_formats( 
 208                     hls_streams[0]['url
'], video_id, ext='mp4
', m3u8_id='hls
')) 
 211             # DASH streams handling is incomplete as 'url
' is missing 
 212             dash_streams = self._get_streams(url, video_id, app_id_ver=(3, 1)) 
 214                 formats.extend(self._parse_segmented_mp4(dash_streams)) 
 217         self._sort_formats(formats) 
 219         description = video.get('description
') 
 220         timestamp = int_or_none(video.get('created_at
')) 
 221         duration = float_or_none(video.get('length
')) 
 222         view_count = int_or_none(video.get('views
')) 
 224         uploader = video.get('owner
', {}).get('username
') 
 225         uploader_id = video.get('owner
', {}).get('id') 
 229             'url
': thumbnail_url, 
 230         } for thumbnail_id, thumbnail_url in video.get('thumbnail
', {}).items()] 
 235             'description
': description, 
 236             'thumbnails
': thumbnails, 
 237             'timestamp
': timestamp, 
 238             'duration
': duration, 
 239             'view_count
': view_count, 
 240             'uploader
': uploader, 
 241             'uploader_id
': uploader_id, 
 246 class UstreamChannelIE(InfoExtractor): 
 247     _VALID_URL = r'https?
://(?
:www\
.)?ustream\
.tv
/channel
/(?P
<slug
>.+)' 
 248     IE_NAME = 'ustream
:channel
' 
 250         'url
': 'http
://www
.ustream
.tv
/channel
/channeljapan
', 
 254         'playlist_mincount
': 17, 
 257     def _real_extract(self, url): 
 258         m = re.match(self._VALID_URL, url) 
 259         display_id = m.group('slug
') 
 260         webpage = self._download_webpage(url, display_id) 
 261         channel_id = self._html_search_meta('ustream
:channel_id
', webpage) 
 263         BASE = 'http
://www
.ustream
.tv
' 
 264         next_url = '/ajax
/socialstream
/videos
/%s/1.json
' % channel_id 
 267             reply = self._download_json( 
 268                 compat_urlparse.urljoin(BASE, next_url), display_id, 
 269                 note='Downloading video 
information (next
: %d)' % (len(video_ids) + 1)) 
 270             video_ids.extend(re.findall(r'data
-content
-id="(\d.*)"', reply['data
'])) 
 271             next_url = reply['nextUrl
'] 
 274             self.url_result('http
://www
.ustream
.tv
/recorded
/' + vid, 'Ustream
') 
 275             for vid in video_ids] 
 279             'display_id
': display_id,