1 from __future__ import unicode_literals
3 from .common import InfoExtractor
4 from ..utils import smuggle_url
7 class HistoryIE(InfoExtractor):
8 _VALID_URL = r'https?://(?:www\.)?history\.com/(?:[^/]+/)+(?P<id>[^/]+?)(?:$|[?#])'
11 'url': 'http://www.history.com/topics/valentines-day/history-of-valentines-day/videos/bet-you-didnt-know-valentines-day?m=528e394da93ae&s=undefined&f=1&free=false',
12 'md5': '6fe632d033c92aa10b8d4a9be047a7c5',
16 'title': "Bet You Didn't Know: Valentine's Day",
17 'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7',
19 'add_ie': ['ThePlatform'],
22 def _real_extract(self, url):
23 video_id = self._match_id(url)
25 webpage = self._download_webpage(url, video_id)
27 video_url = self._search_regex(
28 r'data-href="[^"]*/%s"[^>]+data-release-url="([^"]+)"' % video_id,
31 return self.url_result(smuggle_url(video_url, {'sig': {'key': 'crazyjava', 'secret': 's3cr3t'}}))