mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[extractor/common] _extract_f4m_formats: Use more specific messages when downloading the manifest
This commit is contained in:
parent
31bb8d3f51
commit
f036a6328e
@ -592,7 +592,9 @@ def _sleep(self, timeout, video_id, msg_template=None):
|
||||
time.sleep(timeout)
|
||||
|
||||
def _extract_f4m_formats(self, manifest_url, video_id):
|
||||
manifest = self._download_xml(manifest_url, video_id)
|
||||
manifest = self._download_xml(
|
||||
manifest_url, video_id, 'Downloading f4m manifest',
|
||||
'Unable to download f4m manifest')
|
||||
|
||||
formats = []
|
||||
for media_el in manifest.findall('{http://ns.adobe.com/f4m/1.0}media'):
|
||||
|
Loading…
Reference in New Issue
Block a user