|
|
@ -62,6 +62,10 @@ class TeamcocoIE(InfoExtractor):
|
|
|
|
formats = []
|
|
|
|
formats = []
|
|
|
|
get_quality = qualities(['500k', '480p', '1000k', '720p', '1080p'])
|
|
|
|
get_quality = qualities(['500k', '480p', '1000k', '720p', '1080p'])
|
|
|
|
for filed in data['files']:
|
|
|
|
for filed in data['files']:
|
|
|
|
|
|
|
|
if filed['type'] == 'hls':
|
|
|
|
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
|
|
|
|
filed['url'], video_id, ext='mp4'))
|
|
|
|
|
|
|
|
else:
|
|
|
|
m_format = re.search(r'(\d+(k|p))\.mp4', filed['url'])
|
|
|
|
m_format = re.search(r'(\d+(k|p))\.mp4', filed['url'])
|
|
|
|
if m_format is not None:
|
|
|
|
if m_format is not None:
|
|
|
|
format_id = m_format.group(1)
|
|
|
|
format_id = m_format.group(1)
|
|
|
|