aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/macgamestore.py
blob: 4541f6d66e63300006078fc10143ffe8b3bade8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import re

from .common import InfoExtractor
from ..utils import ExtractorError


class MacGameStoreIE(InfoExtractor):
    IE_NAME = u'macgamestore'
    IE_DESC = u'MacGameStore trailers'
    _VALID_URL = r'https?://www\.macgamestore\.com/mediaviewer\.php\?trailer=(?P<id>\d+)'

    _TEST = {
        u'url': u'http://www.macgamestore.com/mediaviewer.php?trailer=2450',
        u'file': u'2450.m4v',
        u'md5': u'8649b8ea684b6666b4c5be736ecddc61',
        u'info_dict': {
            u'title': u'Crow',
        }
    }

    def _real_extract(self, url):
        mobj = re.match(self._VALID_URL, url)
        video_id = mobj.group('id')
        
        webpage = self._download_webpage(url, video_id, u'Downloading trailer page')
        
        if re.search(r'>Missing Media<', webpage) is not None:
            raise ExtractorError(u'Trailer %s does not exist' % video_id, expected=True)
        
        mobj = re.search(r'<title>MacGameStore: (?P<title>.*?) Trailer</title>', webpage)
        video_title = mobj.group('title')
        
        mobj = re.search(r'(?s)<div\s+id="video-player".*?href="(?P<video>[^"]+)"\s*>', webpage)
        video_url = mobj.group('video')
        
        return {
            'id': video_id,
            'url': video_url,
            'title': video_title
        }