diff options
| author | Aleksander Nitecki <ixendr@itogi.re> | 2016-08-25 20:21:06 +0200 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-08-26 04:15:51 +0700 | 
| commit | 298a120ab76008c900e30de50dc738dd63e79fb4 (patch) | |
| tree | 3ac21f70c715540c1ffc2e969100ec005d6da975 | |
| parent | e3faecde30d85f54c1a341350cba609d3f5b6691 (diff) | |
[nhk] Add extractor for VoD.
| -rw-r--r-- | youtube_dl/extractor/extractors.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/nhk.py | 29 | 
2 files changed, 30 insertions, 0 deletions
diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index 717ba9375..8d88d6cb4 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -541,6 +541,7 @@ from .nextmedia import (  )  from .nfb import NFBIE  from .nfl import NFLIE +from .nhk import NhkVodIE  from .nhl import (      NHLVideocenterIE,      NHLNewsIE, diff --git a/youtube_dl/extractor/nhk.py b/youtube_dl/extractor/nhk.py new file mode 100644 index 000000000..90e935351 --- /dev/null +++ b/youtube_dl/extractor/nhk.py @@ -0,0 +1,29 @@ +from __future__ import unicode_literals + +from .common import InfoExtractor + + +class NhkVodIE(InfoExtractor): +    _VALID_URL = r'http://www3\.nhk\.or\.jp/nhkworld/en/vod/(?P<id>.+)\.html' +    _TESTS = [{ +        'url': 'http://www3.nhk.or.jp/nhkworld/en/vod/tokyofashion/20160815.html', +        'info_dict': { +            'id': 'A1bnNiNTE6nY3jLllS-BIISfcC_PpvF5', +            'ext': 'flv', +            'title': '[nhkworld]VOD;2009-251-2016;TOKYO FASHION EXPRESS;The Kimono as Global Fashion;en', +        }, +        'params': { +            'skip_download': True  # Videos available only for a limited period of time. +        }, +    }] + +    def _real_extract(self, url): +        video_id = self._match_id(url) +        webpage = self._download_webpage(url, video_id) + +        embed_code = self._search_regex( +            r'''nw_vod_ooplayer\('movie-area', '([^']+)'\);''', +            webpage, +            'ooyala embed code') + +        return self.url_result('ooyala:' + embed_code, 'Ooyala')  | 
