mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 15:40:15 +00:00
Merge pull request #8023 from remitamine/extract-formats
[common] simplify the use of _extract_m3u8_formats and _extract_f4m_formats
This commit is contained in:
commit
54537cdfb3
@ -885,7 +885,7 @@ def _extract_f4m_formats(self, manifest_url, video_id, preference=None, f4m_id=N
|
|||||||
fatal=fatal)
|
fatal=fatal)
|
||||||
|
|
||||||
if manifest is False:
|
if manifest is False:
|
||||||
return manifest
|
return []
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
manifest_version = '1.0'
|
manifest_version = '1.0'
|
||||||
@ -956,7 +956,7 @@ def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None,
|
|||||||
errnote=errnote or 'Failed to download m3u8 information',
|
errnote=errnote or 'Failed to download m3u8 information',
|
||||||
fatal=fatal)
|
fatal=fatal)
|
||||||
if res is False:
|
if res is False:
|
||||||
return res
|
return []
|
||||||
m3u8_doc, urlh = res
|
m3u8_doc, urlh = res
|
||||||
m3u8_url = urlh.geturl()
|
m3u8_url = urlh.geturl()
|
||||||
last_info = None
|
last_info = None
|
||||||
|
Loading…
Reference in New Issue
Block a user