diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-28 16:03:43 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-28 16:03:43 +0800 | 
| commit | eb5ad31ce1cbcf355af26a335bef19c096ebaba0 (patch) | |
| tree | 99a08de9dfbd19386032726fd8b8631d1a1c1990 | |
| parent | 618c71dc64086f751b6ae87d5f32687e02a54e58 (diff) | |
| parent | a5941305b6ba0921ea4f34641dd9095372dd1c1d (diff) | |
Merge branch 'pmrowla-mwave-meetgreet'
| -rw-r--r-- | youtube_dl/extractor/extractors.py | 2 | ||||
| -rw-r--r-- | youtube_dl/extractor/mwave.py | 26 | 
2 files changed, 27 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index 00f8a7a85..88405f070 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -438,7 +438,7 @@ from .mtv import (  )  from .muenchentv import MuenchenTVIE  from .musicplayon import MusicPlayOnIE -from .mwave import MwaveIE +from .mwave import MwaveIE, MwaveMeetGreetIE  from .myspace import MySpaceIE, MySpaceAlbumIE  from .myspass import MySpassIE  from .myvi import MyviIE diff --git a/youtube_dl/extractor/mwave.py b/youtube_dl/extractor/mwave.py index 5c3c8d464..a103e0323 100644 --- a/youtube_dl/extractor/mwave.py +++ b/youtube_dl/extractor/mwave.py @@ -10,6 +10,7 @@ from ..utils import (  class MwaveIE(InfoExtractor):      _VALID_URL = r'https?://mwave\.interest\.me/mnettv/videodetail\.m\?searchVideoDetailVO\.clip_id=(?P<id>[0-9]+)' +    _URL_TEMPLATE = 'http://mwave.interest.me/mnettv/videodetail.m?searchVideoDetailVO.clip_id=%s'      _TEST = {          'url': 'http://mwave.interest.me/mnettv/videodetail.m?searchVideoDetailVO.clip_id=168859',          # md5 is unstable @@ -56,3 +57,28 @@ class MwaveIE(InfoExtractor):              'view_count': int_or_none(vod_info.get('hit')),              'formats': formats,          } + + +class MwaveMeetGreetIE(InfoExtractor): +    _VALID_URL = r'https?://mwave\.interest\.me/meetgreet/view/(?P<id>\d+)' +    _TEST = { +        'url': 'http://mwave.interest.me/meetgreet/view/256', +        'info_dict': { +            'id': '173294', +            'ext': 'flv', +            'title': '[MEET&GREET] Park BoRam', +            'thumbnail': 're:^https?://.*\.jpg$', +            'uploader': 'Mwave', +            'duration': 3634, +            'view_count': int, +        } +    } + +    def _real_extract(self, url): +        video_id = self._match_id(url) +        webpage = self._download_webpage(url, video_id) +        clip_id = self._html_search_regex( +            r'<iframe[^>]+src="/mnettv/ifr_clip\.m\?searchVideoDetailVO\.clip_id=(\d+)', +            webpage, 'clip ID') +        clip_url = MwaveIE._URL_TEMPLATE % clip_id +        return self.url_result(clip_url, 'Mwave', clip_id) | 
