]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ustream.py
73b05ecab82a10a6c80360b0b980f285dfbb9c45
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
16 class UstreamIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://www\.ustream\.tv/(?P<type>recorded|embed|embed/recorded)/(?P<id>\d+)'
20 'url': 'http://www.ustream.tv/recorded/20274954',
21 'md5': '088f151799e8f572f84eb62f17d73e5c',
25 'title': 'Young Americans for Liberty February 7, 2012 2:28 AM',
26 'description': 'Young Americans for Liberty February 7, 2012 2:28 AM',
27 'timestamp': 1328577035,
28 'upload_date': '20120207',
29 'uploader': 'yaliberty',
30 'uploader_id': '6780869',
33 # From http://sportscanada.tv/canadagames/index.php/week2/figure-skating/444
34 # Title and uploader available only from params JSON
35 'url': 'http://www.ustream.tv/embed/recorded/59307601?ub=ff0000&lc=ff0000&oc=ffffff&uc=ffffff&v=3&wmode=direct',
36 'md5': '5a2abf40babeac9812ed20ae12d34e10',
40 'title': '-CG11- Canada Games Figure Skating',
41 'uploader': 'sportscanadatv',
43 'skip': 'This Pro Broadcaster has chosen to remove this video from the ustream.tv site.',
46 def _real_extract(self
, url
):
47 m
= re
.match(self
._VALID
_URL
, url
)
48 video_id
= m
.group('id')
50 # some sites use this embed format (see: http://github.com/rg3/youtube-dl/issues/2990)
51 if m
.group('type') == 'embed/recorded':
52 video_id
= m
.group('id')
53 desktop_url
= 'http://www.ustream.tv/recorded/' + video_id
54 return self
.url_result(desktop_url
, 'Ustream')
55 if m
.group('type') == 'embed':
56 video_id
= m
.group('id')
57 webpage
= self
._download
_webpage
(url
, video_id
)
58 desktop_video_id
= self
._html
_search
_regex
(
59 r
'ContentVideoIds=\["([^"]*?)"\]', webpage
, 'desktop_video_id')
60 desktop_url
= 'http://www.ustream.tv/recorded/' + desktop_video_id
61 return self
.url_result(desktop_url
, 'Ustream')
63 params
= self
._download
_json
(
64 'https://api.ustream.tv/videos/%s.json' % video_id
, video_id
)
66 error
= params
.get('error')
69 '%s returned error: %s' % (self
.IE_NAME
, error
), expected
=True)
71 video
= params
['video']
73 title
= video
['title']
74 filesize
= float_or_none(video
.get('file_size'))
81 } for format_id
, video_url
in video
['media_urls'].items()]
82 self
._sort
_formats
(formats
)
84 description
= video
.get('description')
85 timestamp
= int_or_none(video
.get('created_at'))
86 duration
= float_or_none(video
.get('length'))
87 view_count
= int_or_none(video
.get('views'))
89 uploader
= video
.get('owner', {}).get('username')
90 uploader_id
= video
.get('owner', {}).get('id')
95 } for thumbnail_id
, thumbnail_url
in video
.get('thumbnail', {}).items()]
100 'description': description
,
101 'thumbnails': thumbnails
,
102 'timestamp': timestamp
,
103 'duration': duration
,
104 'view_count': view_count
,
105 'uploader': uploader
,
106 'uploader_id': uploader_id
,
111 class UstreamChannelIE(InfoExtractor
):
112 _VALID_URL
= r
'https?://www\.ustream\.tv/channel/(?P<slug>.+)'
113 IE_NAME
= 'ustream:channel'
115 'url': 'http://www.ustream.tv/channel/channeljapan',
119 'playlist_mincount': 17,
122 def _real_extract(self
, url
):
123 m
= re
.match(self
._VALID
_URL
, url
)
124 display_id
= m
.group('slug')
125 webpage
= self
._download
_webpage
(url
, display_id
)
126 channel_id
= self
._html
_search
_meta
('ustream:channel_id', webpage
)
128 BASE
= 'http://www.ustream.tv'
129 next_url
= '/ajax/socialstream/videos/%s/1.json' % channel_id
132 reply
= self
._download
_json
(
133 compat_urlparse
.urljoin(BASE
, next_url
), display_id
,
134 note
='Downloading video information (next: %d)' % (len(video_ids
) + 1))
135 video_ids
.extend(re
.findall(r
'data-content-id="(\d.*)"', reply
['data']))
136 next_url
= reply
['nextUrl']
139 self
.url_result('http://www.ustream.tv/recorded/' + vid
, 'Ustream')
140 for vid
in video_ids
]
144 'display_id': display_id
,