Make ustream IE more robust
authorPhilipp Hagemeister <phihag@phihag.de>
Sat, 12 Jan 2013 12:49:14 +0000 (13:49 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Sat, 12 Jan 2013 12:49:14 +0000 (13:49 +0100)
youtube_dl/InfoExtractors.py

index 4f87eeb3927ef72be525e616e4ac0cd8082aa96b..a992ccc1b9832e25333dbe6681061cccea51bcb9 100755 (executable)
@@ -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')