[teamcoco] Extract m3u8 URLs
This commit is contained in:
parent
ce9f47de99
commit
5bb6328cb9
1 changed files with 19 additions and 15 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue