mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-05 16:03:16 +00:00
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
from ..utils import smuggle_url
|
|
from ..compat import compat_urllib_parse
|
|
|
|
|
|
class HistoryIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?history\.com/(?:[^/]+/)+(?P<id>[^/]+?)(?:$|[?#])'
|
|
|
|
_TESTS = [{
|
|
'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',
|
|
'md5': '6fe632d033c92aa10b8d4a9be047a7c5',
|
|
'info_dict': {
|
|
'id': 'bLx5Dv5Aka1G',
|
|
'ext': 'mp4',
|
|
'title': "Bet You Didn't Know: Valentine's Day",
|
|
'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7',
|
|
},
|
|
'add_ie': ['ThePlatform'],
|
|
}]
|
|
|
|
_VIDEO_URL_RE = [
|
|
r"media_url\s*=\s*'[^']'",
|
|
r'data-mediaurl="([^"]+)"'
|
|
]
|
|
|
|
def _real_extract(self, url):
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
media_url = self._search_regex(self._VIDEO_URL_RE, webpage, 'video url')
|
|
|
|
pdk_signature = webpage = self._download_webpage(
|
|
'https://signature.video.aetndigital.com/?' +
|
|
compat_urllib_parse.urlencode({'url': media_url}), video_id)
|
|
|
|
return self.url_result(smuggle_url(
|
|
media_url + '?mbr=true&format=smil&sig=' + pdk_signature, {'force_smil_url': True}))
|