diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index fb79a1736..a8dbb6e95 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -740,6 +740,7 @@ from .nytimes import ( NYTimesArticleIE, ) from .nuvid import NuvidIE +from .nzonscreen import NZOnScreenIE from .nzz import NZZIE from .odatv import OdaTVIE from .odnoklassniki import OdnoklassnikiIE diff --git a/youtube_dl/extractor/nzonscreen.py b/youtube_dl/extractor/nzonscreen.py new file mode 100644 index 000000000..d11bf9de4 --- /dev/null +++ b/youtube_dl/extractor/nzonscreen.py @@ -0,0 +1,77 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import re +import json + +from .common import InfoExtractor +from ..utils import ( + extract_attributes, +) + +class NZOnScreenIE(InfoExtractor): + _VALID_URL = r'https?://(?:www\.)?nzonscreen\.com/title/(?P[^/]+)' + _TEST = { + 'url': 'https://www.nzonscreen.com/title/watermark-2001', + 'md5': '7743cb2c319c27357bc75dd8bcde5d11', + 'info_dict': { + 'id': 'watermark-2001', + 'ext': 'm4v', + 'title': 'Watermark', + 'description': 'md5:c654662c3985fb0cef75812fbb378174', + #'thumbnail': r're:^https?://.*\.jpg$', + # TODO more properties, either as: + # * A value + # * MD5 checksum; start the string with md5: + # * A regular expression; start the string with re: + # * Any Python type (for example int or float) + } + } + + def _real_extract(self, url): + video_id = self._match_id(url) + webpage = self._download_webpage(url, video_id) + + # TODO more code goes here, for example ... + title = self._html_search_regex(r'

(.+?)

', + webpage, 'title') + main_clip = self._html_search_regex(r'data-video-config=\'(.+?)\'', + webpage, 'source') + main_clip = json.loads(main_clip) + + clips = self._html_search_regex(r'
]+id="uploader"[^>]*>([^<]+)<', webpage, 'uploader', fatal=False), + # TODO more properties (see youtube_dl/extractor/common.py) + } \ No newline at end of file