1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-19 03:29:32 +00:00

[common] simplify the use of _extract_m3u8_formats and _extract_f4m_formats

This commit is contained in:
remitamine 2015-12-27 15:33:39 +01:00
parent 2db772b9ea
commit 8d29e47f54

View file

@ -885,7 +885,7 @@ class InfoExtractor(object):
fatal=fatal)
if manifest is False:
return manifest
return []
formats = []
manifest_version = '1.0'
@ -956,7 +956,7 @@ class InfoExtractor(object):
errnote=errnote or 'Failed to download m3u8 information',
fatal=fatal)
if res is False:
return res
return []
m3u8_doc, urlh = res
m3u8_url = urlh.geturl()
last_info = None