2014-01-17 02:15:09 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2015-02-21 20:19:39 +00:00
|
|
|
import base64
|
2013-06-23 20:31:50 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2015-02-21 20:19:39 +00:00
|
|
|
from ..utils import qualities
|
2013-06-23 20:31:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class TeamcocoIE(InfoExtractor):
|
2014-04-07 13:24:12 +00:00
|
|
|
_VALID_URL = r'http://teamcoco\.com/video/(?P<video_id>[0-9]+)?/?(?P<display_id>.*)'
|
2014-04-04 17:52:35 +00:00
|
|
|
_TESTS = [
|
2014-11-23 20:39:15 +00:00
|
|
|
{
|
|
|
|
'url': 'http://teamcoco.com/video/80187/conan-becomes-a-mary-kay-beauty-consultant',
|
|
|
|
'md5': '3f7746aa0dc86de18df7539903d399ea',
|
|
|
|
'info_dict': {
|
2015-02-01 14:00:54 +00:00
|
|
|
'id': '80187',
|
|
|
|
'ext': 'mp4',
|
2014-11-23 20:39:15 +00:00
|
|
|
'title': 'Conan Becomes A Mary Kay Beauty Consultant',
|
2015-02-08 15:45:38 +00:00
|
|
|
'description': 'Mary Kay is perhaps the most trusted name in female beauty, so of course Conan is a natural choice to sell their products.',
|
|
|
|
'age_limit': 0,
|
2014-11-23 20:39:15 +00:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
'url': 'http://teamcoco.com/video/louis-ck-interview-george-w-bush',
|
|
|
|
'md5': 'cde9ba0fa3506f5f017ce11ead928f9a',
|
|
|
|
'info_dict': {
|
2015-02-01 14:00:54 +00:00
|
|
|
'id': '19705',
|
|
|
|
'ext': 'mp4',
|
2015-02-21 20:19:39 +00:00
|
|
|
'description': 'Louis C.K. got starstruck by George W. Bush, so what? Part one.',
|
|
|
|
'title': 'Louis C.K. Interview Pt. 1 11/3/11',
|
2015-02-08 15:45:38 +00:00
|
|
|
'age_limit': 0,
|
2014-11-23 20:39:15 +00:00
|
|
|
}
|
2014-04-04 17:52:35 +00:00
|
|
|
}
|
|
|
|
]
|
2015-02-11 13:47:19 +00:00
|
|
|
_VIDEO_ID_REGEXES = (
|
|
|
|
r'"eVar42"\s*:\s*(\d+)',
|
|
|
|
r'Ginger\.TeamCoco\.openInApp\("video",\s*"([^"]+)"',
|
|
|
|
r'"id_not"\s*:\s*(\d+)'
|
|
|
|
)
|
2013-06-23 20:31:50 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2014-04-07 13:24:12 +00:00
|
|
|
|
|
|
|
display_id = mobj.group('display_id')
|
|
|
|
webpage = self._download_webpage(url, display_id)
|
2014-11-23 19:41:03 +00:00
|
|
|
|
2015-02-21 20:19:39 +00:00
|
|
|
video_id = mobj.group('video_id')
|
2014-04-07 13:24:12 +00:00
|
|
|
if not video_id:
|
2014-04-04 17:42:34 +00:00
|
|
|
video_id = self._html_search_regex(
|
2015-02-11 13:47:19 +00:00
|
|
|
self._VIDEO_ID_REGEXES, webpage, 'video id')
|
2013-06-23 20:31:50 +00:00
|
|
|
|
2015-02-21 20:19:39 +00:00
|
|
|
embed_url = 'http://teamcoco.com/embed/v/%s' % video_id
|
|
|
|
embed = self._download_webpage(
|
|
|
|
embed_url, video_id, 'Downloading embed page')
|
|
|
|
|
|
|
|
encoded_data = self._search_regex(
|
|
|
|
r'"preload"\s*:\s*"([^"]+)"', embed, 'encoded data')
|
|
|
|
data = self._parse_json(
|
|
|
|
base64.b64decode(encoded_data.encode('ascii')).decode('utf-8'), video_id)
|
2013-06-23 20:31:50 +00:00
|
|
|
|
2013-11-03 16:48:12 +00:00
|
|
|
formats = []
|
2015-02-21 20:19:39 +00:00
|
|
|
get_quality = qualities(['500k', '480p', '1000k', '720p', '1080p'])
|
|
|
|
for filed in data['files']:
|
|
|
|
m_format = re.search(r'(\d+(k|p))\.mp4', filed['url'])
|
2013-11-03 16:48:12 +00:00
|
|
|
if m_format is not None:
|
|
|
|
format_id = m_format.group(1)
|
|
|
|
else:
|
2015-02-21 20:19:39 +00:00
|
|
|
format_id = filed['bitrate']
|
2014-01-17 02:22:02 +00:00
|
|
|
tbr = (
|
2015-02-21 20:19:39 +00:00
|
|
|
int(filed['bitrate'])
|
|
|
|
if filed['bitrate'].isdigit()
|
2014-01-17 02:22:02 +00:00
|
|
|
else None)
|
|
|
|
|
2013-11-03 16:48:12 +00:00
|
|
|
formats.append({
|
2015-02-21 20:19:39 +00:00
|
|
|
'url': filed['url'],
|
2013-11-03 16:48:12 +00:00
|
|
|
'ext': 'mp4',
|
2014-01-17 02:22:02 +00:00
|
|
|
'tbr': tbr,
|
2013-11-03 16:48:12 +00:00
|
|
|
'format_id': format_id,
|
2015-02-21 20:19:39 +00:00
|
|
|
'quality': get_quality(format_id),
|
2013-11-03 16:48:12 +00:00
|
|
|
})
|
2014-01-17 02:22:02 +00:00
|
|
|
|
|
|
|
self._sort_formats(formats)
|
2013-06-23 20:31:50 +00:00
|
|
|
|
2013-11-03 16:48:12 +00:00
|
|
|
return {
|
2014-01-17 02:15:09 +00:00
|
|
|
'id': video_id,
|
2014-04-07 13:24:12 +00:00
|
|
|
'display_id': display_id,
|
2013-11-03 16:48:12 +00:00
|
|
|
'formats': formats,
|
2015-02-21 20:19:39 +00:00
|
|
|
'title': data['title'],
|
|
|
|
'thumbnail': data.get('thumb', {}).get('href'),
|
|
|
|
'description': data.get('teaser'),
|
2015-02-08 15:45:38 +00:00
|
|
|
'age_limit': self._family_friendly_search(webpage),
|
2013-11-03 16:48:12 +00:00
|
|
|
}
|