youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f8610ba1ca4705dcae5c45c5ac66a99b174ebed3
parent c99f4098c4c94a3588e5f59c75dda58923c1c823
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Thu, 23 Apr 2015 17:57:49 +0800

[ustream] Fix extraction (closes #3998)

Diffstat:
Myoutube_dl/extractor/ustream.py | 11++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/ustream.py b/youtube_dl/extractor/ustream.py @@ -1,5 +1,6 @@ from __future__ import unicode_literals +import json import re from .common import InfoExtractor @@ -39,7 +40,15 @@ class UstreamIE(InfoExtractor): desktop_url = 'http://www.ustream.tv/recorded/' + desktop_video_id return self.url_result(desktop_url, 'Ustream') - video_url = 'http://tcdn.ustream.tv/video/%s' % video_id + params = self._download_json( + 'http://cdngw.ustream.tv/rgwjson/Viewer.getVideo/' + json.dumps({ + 'brandId': 1, + 'videoId': int(video_id), + 'autoplay': False, + }), video_id) + + video_url = params['flv'] + webpage = self._download_webpage(url, video_id) self.report_extraction(video_id)