]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/ondemandkorea.py
Fix "invalid escape sequences" error on Python 3.6
[yt-dlp.git] / youtube_dl / extractor / ondemandkorea.py
CommitLineData
594601f5 1# coding: utf-8
2from __future__ import unicode_literals
3
47c914f9
S
4from .jwplatform import JWPlatformBaseIE
5from ..utils import (
6 ExtractorError,
7 js_to_json,
8)
594601f5 9
594601f5 10
47c914f9 11class OnDemandKoreaIE(JWPlatformBaseIE):
594601f5 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',
ec85ded8 19 'thumbnail': r're:^https?://.*\.jpg$',
594601f5 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
47c914f9
S
32 raise ExtractorError(
33 'Unable to access page. You may have been blocked.',
34 expected=True)
594601f5 35
36 if 'msg_block_01.png' in webpage:
47c914f9
S
37 self.raise_geo_restricted(
38 'This content is not available in your region')
39
594601f5 40 if 'This video is only available to ODK PLUS members.' in webpage:
47c914f9
S
41 raise ExtractorError(
42 'This video is only available to ODK PLUS members.',
43 expected=True)
594601f5 44
45 title = self._og_search_title(webpage)
594601f5 46
47c914f9
S
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)
594601f5 55
47c914f9 56 info.update({
594601f5 57 'title': title,
47c914f9
S
58 'thumbnail': self._og_search_thumbnail(webpage),
59 })
60 return info