1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-09-29 22:08:45 +02:00

Make ustream IE more robust

This commit is contained in:
Philipp Hagemeister 2013-01-12 13:49:14 +01:00
parent db30f02b50
commit ef0c8d5f9f

View File

@ -3699,11 +3699,11 @@ class SteamIE(InfoExtractor):
} }
videos.append(info) videos.append(info)
return videos return videos
class UstreamIE(InfoExtractor): 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' IE_NAME = u'ustream'
def _real_extract(self, url): def _real_extract(self, url):
m = re.match(self._VALID_URL, url) m = re.match(self._VALID_URL, url)
video_id = m.group('videoID') video_id = m.group('videoID')