1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-13 20:15:15 +08:00
- successfully extracted title
This commit is contained in:
carsten demming 2018-02-20 23:51:15 +01:00
parent 7f7801e776
commit 15e5d19a9b

View File

@ -5,8 +5,7 @@ from .common import InfoExtractor
class VolAtIE(InfoExtractor): class VolAtIE(InfoExtractor):
print("wtf") _VALID_URL = r'https?://(?:www\.)?vol\.at/[^?#]*?/(?P<id>[0-9]+)'
_VALID_URL = r'https?://(?:www\.)?vol\.at/(?P<id>[0-9]+)'
_TEST = { _TEST = {
'url': 'http://www.vol.at/blue-man-group/5593454', 'url': 'http://www.vol.at/blue-man-group/5593454',
'md5': 'TODO: md5 sum of the first 10241 bytes of the video file (use --test)', 'md5': 'TODO: md5 sum of the first 10241 bytes of the video file (use --test)',
@ -14,7 +13,6 @@ class VolAtIE(InfoExtractor):
'id': '5593454', 'id': '5593454',
'ext': 'mp4', 'ext': 'mp4',
'title': '"Blau ist mysteriös": Die Blue Man Group im Interview', 'title': '"Blau ist mysteriös": Die Blue Man Group im Interview',
'thumbnail': r're:^https?://.*\.jpg$',
# TODO more properties, either as: # TODO more properties, either as:
# * A value # * A value
# * MD5 checksum; start the string with md5: # * MD5 checksum; start the string with md5:
@ -24,17 +22,12 @@ class VolAtIE(InfoExtractor):
} }
def _real_extract(self, url): def _real_extract(self, url):
print("hello test")
video_id = self._match_id(url) video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id) webpage = self._download_webpage(url, video_id)
# TODO more code goes here, for example ... # TODO more code goes here, for example ...
title = self._html_search_regex(r'<h1>(.+?)</h1>', webpage, 'title') title = self._og_search_title(webpage)
return { return {
'id': video_id, 'id': video_id,
'title': title, 'title': title
'description': self._og_search_description(webpage),
'uploader': self._search_regex(r'<div[^>]+id="uploader"[^>]*>([^<]+)<', webpage, 'uploader', fatal=False),
# TODO more properties (see youtube_dl/extractor/common.py) # TODO more properties (see youtube_dl/extractor/common.py)
} }