mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-02 16:37:59 +09:00
[macgamestore] Modernize
This commit is contained in:
parent
c4e817ce4a
commit
c1f06d6307
@ -1,7 +1,5 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import ExtractorError
|
from ..utils import ExtractorError
|
||||||
|
|
||||||
@ -13,21 +11,22 @@ class MacGameStoreIE(InfoExtractor):
|
|||||||
|
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'http://www.macgamestore.com/mediaviewer.php?trailer=2450',
|
'url': 'http://www.macgamestore.com/mediaviewer.php?trailer=2450',
|
||||||
'file': '2450.m4v',
|
|
||||||
'md5': '8649b8ea684b6666b4c5be736ecddc61',
|
'md5': '8649b8ea684b6666b4c5be736ecddc61',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
|
'id': '2450',
|
||||||
|
'ext': 'm4v',
|
||||||
'title': 'Crow',
|
'title': 'Crow',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
video_id = self._match_id(url)
|
||||||
video_id = mobj.group('id')
|
webpage = self._download_webpage(
|
||||||
|
url, video_id, 'Downloading trailer page')
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id, 'Downloading trailer page')
|
if '>Missing Media<' in webpage:
|
||||||
|
raise ExtractorError(
|
||||||
if re.search(r'>Missing Media<', webpage) is not None:
|
'Trailer %s does not exist' % video_id, expected=True)
|
||||||
raise ExtractorError('Trailer %s does not exist' % video_id, expected=True)
|
|
||||||
|
|
||||||
video_title = self._html_search_regex(
|
video_title = self._html_search_regex(
|
||||||
r'<title>MacGameStore: (.*?) Trailer</title>', webpage, 'title')
|
r'<title>MacGameStore: (.*?) Trailer</title>', webpage, 'title')
|
||||||
|
Loading…
Reference in New Issue
Block a user