youtube-dl

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

commit ef0c8d5f9fe9c11c4b6e5aafdc7c1139771f6385
parent db30f02b50a565091376b316208bfdddd729b4ed
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat, 12 Jan 2013 13:49:14 +0100

Make ustream IE more robust

Diffstat:
Myoutube_dl/InfoExtractors.py | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -3699,11 +3699,11 @@ class SteamIE(InfoExtractor): } videos.append(info) return videos - + class UstreamIE(InfoExtractor): - _VALID_URL = r'http://www.ustream.tv/recorded/(?P<videoID>\d+)' + _VALID_URL = r'https?://www\.ustream\.tv/recorded/(?P<videoID>\d+)' IE_NAME = u'ustream' - + def _real_extract(self, url): m = re.match(self._VALID_URL, url) video_id = m.group('videoID')