[teamcoco] Extract m3u8 URLs

master
Naglis Jonaitis 9 years ago
parent ce9f47de99
commit 5bb6328cb9

@ -62,6 +62,10 @@ class TeamcocoIE(InfoExtractor):
formats = []
get_quality = qualities(['500k', '480p', '1000k', '720p', '1080p'])
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'])
if m_format is not None:
format_id = m_format.group(1)

Loading…
Cancel
Save