From 278986ea0f49b95506277c5f6b4875def231d8bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jaime=20Marqui=CC=81nez=20Ferra=CC=81ndiz?= Date: Tue, 1 Jan 2013 17:52:46 +0100 Subject: [PATCH] ustreamIE --- test/tests.json | 8 ++++++++ youtube_dl/InfoExtractors.py | 29 +++++++++++++++++++++++++++++ youtube_dl/__init__.py | 1 + 3 files changed, 38 insertions(+) diff --git a/test/tests.json b/test/tests.json index 7c3986625..784e09fb3 100644 --- a/test/tests.json +++ b/test/tests.json @@ -115,5 +115,13 @@ "info_dict": { "title": "Terraria 1.1 Trailer" } + }, + { + "name": "Ustream", + "url": "http://www.ustream.tv/recorded/20274954", + "files": [["20274954.flv", "088f151799e8f572f84eb62f17d73e5c" ]], + "info_dict": { + "title": "Young Americans for Liberty February 7, 2012 2:28 AM" + } } ] diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index d7295ae3f..3dad82835 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -3805,3 +3805,32 @@ class SteamIE(InfoExtractor): } videos.append(info) return videos + +class UstreamIE(InfoExtractor): + _VALID_URL = r'http://www.ustream.tv/recorded/(?P\d+)' + IE_NAME = u'ustream' + + def _real_extract(self, url): + m = re.match(self._VALID_URL, url) + video_id = m.group('videoID') + video_url = u'http://tcdn.ustream.tv/video/%s' % video_id + try: + urlh = compat_urllib_request.urlopen(url) + webpage_bytes = urlh.read() + webpage = webpage_bytes.decode('utf-8', 'ignore') + except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err: + self._downloader.trouble(u'ERROR: unable to download webpage: %s' % compat_str(err)) + return + m = re.search(r'data-title="(?P.+)"',webpage) + title = m.group('title') + m = re.search(r'<a class="state" data-content-type="channel" data-content-id="(?P<uploader>\d+)"',webpage) + uploader = m.group('uploader') + info = { + 'id':video_id, + 'url':video_url, + 'ext': 'flv', + 'title': title, + 'uploader': uploader + } + return [info] + pass diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py index 62ecdf6b6..faaeab04b 100644 --- a/youtube_dl/__init__.py +++ b/youtube_dl/__init__.py @@ -314,6 +314,7 @@ def gen_extractors(): FunnyOrDieIE(), TweetReelIE(), SteamIE(), + UstreamIE(), GenericIE() ] -- 2.30.2