# coding: utf-8 from __future__ import unicode_literals import re from .turner import TurnerBaseIE class CartoonNetworkIE(TurnerBaseIE): _VALID_URL = r'https?://(?:www\.)?cartoonnetwork\.com/video/(?:[^/]+/)+(?P[^/?#]+)-(?:clip|episode)\.html' _TEST = { 'url': 'https://www.cartoonnetwork.com/video/steven-universe/garnet-gets-a-job-clip.html', 'info_dict': { 'id': '96bc363957a17bc03d16feb86b8391a321f7e670', 'ext': 'mp4', 'title': 'Garnet Gets a Job', 'description': 'Garnet and Steven explore the most unlikely timelines in Beach City.', }, 'params': { # m3u8 download 'skip_download': True, }, } def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) video_id = self._html_search_regex(r'[^>]+.mediaId = "(.+?)"', webpage, 'video_id') title = self._html_search_regex(r'[^>]+.episodeTitle = "(.+?)"', webpage, 'title') auth_required = self._html_search_regex(r'[^>]+.authType = "(.+?)"', webpage, 'authType') videoType = self._html_search_regex(r'[^>]+.videoType = "(.+?)"', webpage, 'videoType') if 'short' in videoType: description = '' else: description = self._html_search_regex(r'