]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/mwave.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / yt_dlp / extractor / mwave.py
CommitLineData
7900aede 1from __future__ import unicode_literals
2
3from .common import InfoExtractor
22c83245
S
4from ..compat import compat_str
5from ..utils import (
6 int_or_none,
7 parse_duration,
8)
7900aede 9
10
11class MwaveIE(InfoExtractor):
f92bb612 12 _VALID_URL = r'https?://mwave\.interest\.me/(?:[^/]+/)?mnettv/videodetail\.m\?searchVideoDetailVO\.clip_id=(?P<id>[0-9]+)'
a5941305 13 _URL_TEMPLATE = 'http://mwave.interest.me/mnettv/videodetail.m?searchVideoDetailVO.clip_id=%s'
f92bb612 14 _TESTS = [{
7900aede 15 'url': 'http://mwave.interest.me/mnettv/videodetail.m?searchVideoDetailVO.clip_id=168859',
a8062eab 16 # md5 is unstable
7900aede 17 'info_dict': {
18 'id': '168859',
19 'ext': 'flv',
20 'title': '[M COUNTDOWN] SISTAR - SHAKE IT',
ec85ded8 21 'thumbnail': r're:^https?://.*\.jpg$',
22c83245
S
22 'uploader': 'M COUNTDOWN',
23 'duration': 206,
24 'view_count': int,
7900aede 25 }
f92bb612
S
26 }, {
27 'url': 'http://mwave.interest.me/en/mnettv/videodetail.m?searchVideoDetailVO.clip_id=176199',
28 'only_matching': True,
29 }]
7900aede 30
31 def _real_extract(self, url):
32 video_id = self._match_id(url)
33
22c83245 34 vod_info = self._download_json(
7900aede 35 'http://mwave.interest.me/onair/vod_info.m?vodtype=CL&sectorid=&endinfo=Y&id=%s' % video_id,
22c83245 36 video_id, 'Download vod JSON')
7900aede 37
38 formats = []
22c83245
S
39 for num, cdn_info in enumerate(vod_info['cdn']):
40 stream_url = cdn_info.get('url')
41 if not stream_url:
42 continue
43 stream_name = cdn_info.get('name') or compat_str(num)
44 f4m_stream = self._download_json(
45 stream_url, video_id,
46 'Download %s stream JSON' % stream_name)
47 f4m_url = f4m_stream.get('fileurl')
48 if not f4m_url:
49 continue
7900aede 50 formats.extend(
22c83245 51 self._extract_f4m_formats(f4m_url + '&hdcore=3.0.3', video_id, f4m_id=stream_name))
7900aede 52 self._sort_formats(formats)
53
54 return {
55 'id': video_id,
22c83245
S
56 'title': vod_info['title'],
57 'thumbnail': vod_info.get('cover'),
58 'uploader': vod_info.get('program_title'),
59 'duration': parse_duration(vod_info.get('time')),
60 'view_count': int_or_none(vod_info.get('hit')),
7900aede 61 'formats': formats,
62 }
5b5d7cc1
PR
63
64
65class MwaveMeetGreetIE(InfoExtractor):
f92bb612
S
66 _VALID_URL = r'https?://mwave\.interest\.me/(?:[^/]+/)?meetgreet/view/(?P<id>\d+)'
67 _TESTS = [{
5b5d7cc1
PR
68 'url': 'http://mwave.interest.me/meetgreet/view/256',
69 'info_dict': {
70 'id': '173294',
71 'ext': 'flv',
72 'title': '[MEET&GREET] Park BoRam',
ec85ded8 73 'thumbnail': r're:^https?://.*\.jpg$',
5b5d7cc1
PR
74 'uploader': 'Mwave',
75 'duration': 3634,
76 'view_count': int,
77 }
f92bb612
S
78 }, {
79 'url': 'http://mwave.interest.me/en/meetgreet/view/256',
80 'only_matching': True,
81 }]
5b5d7cc1
PR
82
83 def _real_extract(self, url):
84 video_id = self._match_id(url)
85 webpage = self._download_webpage(url, video_id)
a5941305
YCH
86 clip_id = self._html_search_regex(
87 r'<iframe[^>]+src="/mnettv/ifr_clip\.m\?searchVideoDetailVO\.clip_id=(\d+)',
88 webpage, 'clip ID')
89 clip_url = MwaveIE._URL_TEMPLATE % clip_id
5b5d7cc1 90 return self.url_result(clip_url, 'Mwave', clip_id)