mirror of
https://gitlab.com/dstftw/youtube-dl.git
synced 2020-11-16 09:42:26 +00:00
[tmz] Simplify (#4304)
This commit is contained in:
parent
f0c3d729d7
commit
c553fe5d29
|
@ -21,19 +21,12 @@ class TMZIE(InfoExtractor):
|
|||
|
||||
def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
|
||||
url = self._html_search_regex(r'<meta name="VideoURL" content="(.+)"', webpage, 'url')
|
||||
title = self._html_search_regex(r'<meta property="og:title" content="(.+)"', webpage, 'title')
|
||||
description = self._html_search_regex(r'<meta property="og:description" content="(.+)"', webpage, 'description')
|
||||
thumbnail_url = self._html_search_regex(r'<meta name="ThumbURL" content="(.+)"', webpage, 'thumbnail url')
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'url': url,
|
||||
'ext': 'mp4',
|
||||
'title': title,
|
||||
'description': description,
|
||||
'thumbnail': thumbnail_url,
|
||||
'url': self._html_search_meta('VideoURL', webpage, fatal=True),
|
||||
'title': self._og_search_title(webpage),
|
||||
'description': self._og_search_description(webpage),
|
||||
'thumbnail': self._html_search_meta('ThumbURL', webpage),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue