diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-08-18 04:37:14 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-08-18 04:37:14 +0700 |
commit | 4e9fee101508fe90c5b103738d1b6458e40affd6 (patch) | |
tree | f2afcaa41a61259be504188bcfbfa4e5e397fafa /youtube_dl/extractor/hgtv.py | |
parent | 7273e5849b27cb7d0f4d5f40e7801cab2da85ae3 (diff) |
[hgtvcom:show] Add extractor (Closes #10365)
Diffstat (limited to 'youtube_dl/extractor/hgtv.py')
-rw-r--r-- | youtube_dl/extractor/hgtv.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/youtube_dl/extractor/hgtv.py b/youtube_dl/extractor/hgtv.py index c3f0733cf..69543bff2 100644 --- a/youtube_dl/extractor/hgtv.py +++ b/youtube_dl/extractor/hgtv.py @@ -46,3 +46,34 @@ class HGTVIE(InfoExtractor): 'episode_number': int_or_none(embed_vars.get('episode')), 'ie_key': 'ThePlatform', } + + +class HGTVComShowIE(InfoExtractor): + IE_NAME = 'hgtv.com:show' + _VALID_URL = r'https?://(?:www\.)?hgtv\.com/shows/[^/]+/(?P<id>[^/?#&]+)' + _TEST = { + 'url': 'http://www.hgtv.com/shows/flip-or-flop/flip-or-flop-full-episodes-videos', + 'info_dict': { + 'id': 'flip-or-flop-full-episodes-videos', + 'title': 'Flip or Flop Full Episodes', + }, + 'playlist_mincount': 15, + } + + def _real_extract(self, url): + display_id = self._match_id(url) + + webpage = self._download_webpage(url, display_id) + + config = self._parse_json( + self._search_regex( + r'(?s)data-module=["\']video["\'][^>]*>.*?<script[^>]+type=["\']text/x-config["\'][^>]*>(.+?)</script', + webpage, 'video config'), + display_id)['channels'][0] + + entries = [ + self.url_result(video['releaseUrl']) + for video in config['videos'] if video.get('releaseUrl')] + + return self.playlist_result( + entries, display_id, config.get('title'), config.get('description')) |