2 from __future__ import unicode_literals
6 from .common import InfoExtractor
7 from ..compat import compat_str
15 class CCTVIE(InfoExtractor):
17 _VALID_URL = r'https?://(?:(?:[^/]+)\.(?:cntv|cctv)\.(?:com|cn)|(?:www\.)?ncpa-classic\.com)/(?:[^/]+/)*?(?P<id>[^/?#&]+?)(?:/index)?(?:\.s?html|[?#&]|$)'
19 # fo.addVariable("videoCenterId","id")
20 'url': 'http://sports.cntv.cn/2016/02/12/ARTIaBRxv4rTT1yWf1frW2wi160212.shtml',
21 'md5': 'd61ec00a493e09da810bf406a078f691',
23 'id': '5ecdbeab623f4973b40ff25f18b174e8',
25 'title': '[NBA]二少联手砍下46分 雷霆主场击败鹈鹕(快讯)',
26 'description': 'md5:7e14a5328dc5eb3d1cd6afbbe0574e95',
28 'uploader': 'songjunjie',
29 'timestamp': 1455279956,
30 'upload_date': '20160212',
34 'url': 'http://tv.cctv.com/2016/02/05/VIDEUS7apq3lKrHG9Dncm03B160205.shtml',
36 'id': 'efc5d49e5b3b4ab2b34f3a502b73d3ae',
38 'title': '[赛车]“车王”舒马赫恢复情况成谜(快讯)',
39 'description': '2月4日,蒙特泽莫罗透露了关于“车王”舒马赫恢复情况,但情况是否属实遭到了质疑。',
42 'timestamp': 1454677291,
43 'upload_date': '20160205',
46 'skip_download': True,
50 'url': 'http://english.cntv.cn/special/four_comprehensives/index.shtml',
52 'id': '4bb9bb4db7a6471ba85fdeda5af0381e',
54 'title': 'NHnews008 ANNUAL POLITICAL SEASON',
55 'description': 'Four Comprehensives',
57 'uploader': 'zhangyunlei',
58 'timestamp': 1425385521,
59 'upload_date': '20150303',
62 'skip_download': True,
66 'url': 'http://cctv.cntv.cn/lm/tvseries_russian/yilugesanghua/index.shtml',
68 'id': 'b15f009ff45c43968b9af583fc2e04b2',
70 'title': 'Путь,усыпанный космеями Серия 1',
71 'description': 'Путь, усыпанный космеями',
74 'timestamp': 1477479241,
75 'upload_date': '20161026',
78 'skip_download': True,
81 # var initMyAray = 'id'
82 'url': 'http://www.ncpa-classic.com/2013/05/22/VIDE1369219508996867.shtml',
84 'id': 'a194cfa7f18c426b823d876668325946',
86 'title': '小泽征尔音乐塾 音乐梦想无国界',
88 'timestamp': 1369248264,
89 'upload_date': '20130522',
92 'skip_download': True,
96 'url': 'http://www.ncpa-classic.com/clt/more/416/index.shtml',
98 'id': 'a8606119a4884588a79d81c02abecc16',
100 'title': '来自维也纳的新年贺礼',
101 'description': 'md5:f13764ae8dd484e84dd4b39d5bcba2a7',
104 'timestamp': 1482942419,
105 'upload_date': '20161228',
108 'skip_download': True,
110 'expected_warnings': ['Failed to download m3u8 information'],
112 'url': 'http://ent.cntv.cn/2016/01/18/ARTIjprSSJH8DryTVr5Bx8Wb160118.shtml',
113 'only_matching': True,
115 'url': 'http://tv.cntv.cn/video/C39296/e0210d949f113ddfb38d31f00a4e5c44',
116 'only_matching': True,
118 'url': 'http://english.cntv.cn/2016/09/03/VIDEhnkB5y9AgHyIEVphCEz1160903.shtml',
119 'only_matching': True,
121 'url': 'http://tv.cctv.com/2016/09/07/VIDE5C1FnlX5bUywlrjhxXOV160907.shtml',
122 'only_matching': True,
124 'url': 'http://tv.cntv.cn/video/C39296/95cfac44cabd3ddc4a9438780a4e5c44',
125 'only_matching': True,
128 def _real_extract(self, url):
129 video_id = self._match_id(url)
130 webpage = self._download_webpage(url, video_id)
132 video_id = self._search_regex(
133 [r'var\s+guid\s*=\s*["\']([\da-fA-F]+)',
134 r'videoCenterId["\']\s*,\s*["\']([\da-fA-F]+)',
135 r'changePlayer\s*\(\s*["\']([\da-fA-F]+)',
136 r'load[Vv]ideo\s*\(\s*["\']([\da-fA-F]+)',
137 r'var\s+initMyAray\s*=\s*["\']([\da-fA-F]+)',
138 r'var\s+ids\s*=\s*\[["\']([\da-fA-F]+)'],
141 data = self._download_json(
142 'http://vdn.apps.cntv.cn/api/getHttpVideoInfo.do', video_id,
151 title = data['title']
155 video = data.get('video')
156 if isinstance(video, dict):
157 for quality, chapters_key in enumerate(('lowChapters', 'chapters')):
159 video, lambda x: x[chapters_key][0]['url'], compat_str)
168 hls_url = try_get(data, lambda x: x['hls_url'], compat_str)
170 hls_url = re.sub(r'maxbr=\d+&?', '', hls_url)
171 formats.extend(self._extract_m3u8_formats(
172 hls_url, video_id, 'mp4', entry_protocol='m3u8_native',
173 m3u8_id='hls', fatal=False))
175 self._sort_formats(formats)
177 uploader = data.get('editer_name')
178 description = self._html_search_meta(
179 'description', webpage, default=None)
180 timestamp = unified_timestamp(data.get('f_pgmtime'))
181 duration = float_or_none(try_get(video, lambda x: x['totalLength']))
186 'description': description,
187 'uploader': uploader,
188 'timestamp': timestamp,
189 'duration': duration,