48 lines
1.7 KiB
Python
Raw Normal View History

# 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<id>[^/?#]+)-(?: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')
description = self._html_search_regex(r'[^>]+description[^>]*>(.+?)<', webpage, 'description', default=None)
2018-09-05 17:59:56 -07:00
info = self._extract_ngtv_info(
video_id,
{'networkId': 'cartoonnetwork'},
{
'url': url,
'site_name': 'CartoonNetwork',
'auth_required': self._search_regex(
r'[^>]+currentVideo.authType = "(auth|unauth)"',
webpage, 'auth required', default='false') == 'auth',
2018-09-05 17:59:56 -07:00
},
)
info.update({
'id': video_id,
'title': title,
'description': description,
})
return info