'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
'md5': '27b99cdb639c9b12a79bca876a073417',
'info_dict': {
- 'uploader': 'AU SPA: The NSA and Privacy',
+ 'id': '45734260',
+ 'ext': 'flv',
+ 'uploader': 'AU SPA: The NSA and Privacy',
'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
}
},
class UstreamIE(InfoExtractor):
_VALID_URL = r'https?://www\.ustream\.tv/(?P<type>recorded|embed)/(?P<videoID>\d+)'
IE_NAME = 'ustream'
- _TESTS = [{
+ _TEST = {
'url': 'http://www.ustream.tv/recorded/20274954',
'file': '20274954.flv',
'md5': '088f151799e8f572f84eb62f17d73e5c',
"uploader": "Young Americans for Liberty",
"title": "Young Americans for Liberty February 7, 2012 2:28 AM",
},
- },
- {
- 'url': 'http://www.ustream.tv/embed/17357891',
- 'file': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman-45734260.flv',
- 'md5': '27b99cdb639c9b12a79bca876a073417',
- 'info_dict': {
- "uploader": "AU SPA: The NSA and Privacy",
- "title": "NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman"
- },
}
- ]
def _real_extract(self, url):
m = re.match(self._VALID_URL, url)