c3e830c238d123a9f8fd5f1e057f144198baab19
[youtube-dl] / youtube_dl / extractor / ondemandkorea.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .jwplatform import JWPlatformBaseIE
5 from ..utils import (
6     ExtractorError,
7     js_to_json,
8 )
9
10
11 class OnDemandKoreaIE(JWPlatformBaseIE):
12     _VALID_URL = r'https?://(?:www\.)?ondemandkorea\.com/(?P<id>[^/]+)\.html'
13     _TEST = {
14         'url': 'http://www.ondemandkorea.com/ask-us-anything-e43.html',
15         'info_dict': {
16             'id': 'ask-us-anything-e43',
17             'ext': 'mp4',
18             'title': 'Ask Us Anything : E43',
19             'thumbnail': 're:^https?://.*\.jpg$',
20         },
21         'params': {
22             'skip_download': 'm3u8 download'
23         }
24     }
25
26     def _real_extract(self, url):
27         video_id = self._match_id(url)
28         webpage = self._download_webpage(url, video_id, fatal=False)
29
30         if not webpage:
31             # Page sometimes returns captcha page with HTTP 403
32             raise ExtractorError(
33                 'Unable to access page. You may have been blocked.',
34                 expected=True)
35
36         if 'msg_block_01.png' in webpage:
37             self.raise_geo_restricted(
38                 'This content is not available in your region')
39
40         if 'This video is only available to ODK PLUS members.' in webpage:
41             raise ExtractorError(
42                 'This video is only available to ODK PLUS members.',
43                 expected=True)
44
45         title = self._og_search_title(webpage)
46
47         jw_config = self._parse_json(
48             self._search_regex(
49                 r'(?s)jwplayer\(([\'"])(?:(?!\1).)+\1\)\.setup\s*\((?P<options>.+?)\);',
50                 webpage, 'jw config', group='options'),
51             video_id, transform_source=js_to_json)
52         info = self._parse_jwplayer_data(
53             jw_config, video_id, require_title=False, m3u8_id='hls',
54             base_url=url)
55
56         info.update({
57             'title': title,
58             'thumbnail': self._og_search_thumbnail(webpage),
59         })
60         return info