diff options
| author | Sergey M․ <dstftw@gmail.com> | 2017-02-23 18:44:04 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2017-02-23 18:45:38 +0700 | 
| commit | d5fd9a3be305aa8fead8fb70aae64703afe49e43 (patch) | |
| tree | 1c1ce318ac3122c2fc1447c7cd67003144faf207 | |
| parent | ada77fa544e185a8cd7c3e5d6374e0b6995557a2 (diff) | |
[skylinewebcams] Add extractor (closes #12221)
| -rw-r--r-- | youtube_dl/extractor/extractors.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/skylinewebcams.py | 42 | 
2 files changed, 43 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/extractors.py b/youtube_dl/extractor/extractors.py index 55b4782d3..83a170fa7 100644 --- a/youtube_dl/extractor/extractors.py +++ b/youtube_dl/extractor/extractors.py @@ -852,6 +852,7 @@ from .shared import (  from .showroomlive import ShowRoomLiveIE  from .sina import SinaIE  from .sixplay import SixPlayIE +from .skylinewebcams import SkylineWebcamsIE  from .skynewsarabia import (      SkyNewsArabiaIE,      SkyNewsArabiaArticleIE, diff --git a/youtube_dl/extractor/skylinewebcams.py b/youtube_dl/extractor/skylinewebcams.py new file mode 100644 index 000000000..5b4aaac6f --- /dev/null +++ b/youtube_dl/extractor/skylinewebcams.py @@ -0,0 +1,42 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from .common import InfoExtractor + + +class SkylineWebcamsIE(InfoExtractor): +    _VALID_URL = r'https?://(?:www\.)?skylinewebcams\.com/[^/]+/webcam/(?:[^/]+/)+(?P<id>[^/]+)\.html' +    _TEST = { +        'url': 'https://www.skylinewebcams.com/it/webcam/italia/lazio/roma/scalinata-piazza-di-spagna-barcaccia.html', +        'info_dict': { +            'id': 'scalinata-piazza-di-spagna-barcaccia', +            'ext': 'mp4', +            'title': 're:^Live Webcam Scalinata di Piazza di Spagna - La Barcaccia [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$', +            'description': 'Roma, veduta sulla Scalinata di Piazza di Spagna e sulla Barcaccia', +            'is_live': True, +        }, +        'params': { +            'skip_download': True, +        } +    } + +    def _real_extract(self, url): +        video_id = self._match_id(url) + +        webpage = self._download_webpage(url, video_id) + +        stream_url = self._search_regex( +            r'url\s*:\s*(["\'])(?P<url>(?:https?:)?//.+?\.m3u8.*?)\1', webpage, +            'stream url', group='url') + +        title = self._og_search_title(webpage) +        description = self._og_search_description(webpage) + +        return { +            'id': video_id, +            'url': stream_url, +            'ext': 'mp4', +            'title': self._live_title(title), +            'description': description, +            'is_live': True, +        } | 
