mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 21:33:19 +00:00
[youtube] Make further DASH manifests not fatal after succeeded one
This commit is contained in:
parent
082a0140ef
commit
77c6fb5b24
|
@ -798,7 +798,7 @@ def _extract_annotations(self, video_id):
|
||||||
return self._download_webpage(url, video_id, note='Searching for annotations.', errnote='Unable to download video annotations.')
|
return self._download_webpage(url, video_id, note='Searching for annotations.', errnote='Unable to download video annotations.')
|
||||||
|
|
||||||
def _parse_dash_manifest(
|
def _parse_dash_manifest(
|
||||||
self, video_id, dash_manifest_url, player_url, age_gate):
|
self, video_id, dash_manifest_url, player_url, age_gate, fatal=True):
|
||||||
def decrypt_sig(mobj):
|
def decrypt_sig(mobj):
|
||||||
s = mobj.group(1)
|
s = mobj.group(1)
|
||||||
dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
|
dec_s = self._decrypt_signature(s, video_id, player_url, age_gate)
|
||||||
|
@ -807,7 +807,11 @@ def decrypt_sig(mobj):
|
||||||
dash_doc = self._download_xml(
|
dash_doc = self._download_xml(
|
||||||
dash_manifest_url, video_id,
|
dash_manifest_url, video_id,
|
||||||
note='Downloading DASH manifest',
|
note='Downloading DASH manifest',
|
||||||
errnote='Could not download DASH manifest')
|
errnote='Could not download DASH manifest',
|
||||||
|
fatal=fatal)
|
||||||
|
|
||||||
|
if dash_doc is False:
|
||||||
|
return []
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
for a in dash_doc.findall('.//{urn:mpeg:DASH:schema:MPD:2011}AdaptationSet'):
|
for a in dash_doc.findall('.//{urn:mpeg:DASH:schema:MPD:2011}AdaptationSet'):
|
||||||
|
@ -1161,14 +1165,21 @@ def _map_to_format_list(urlmap):
|
||||||
|
|
||||||
# Look for the DASH manifest
|
# Look for the DASH manifest
|
||||||
if self._downloader.params.get('youtube_include_dash_manifest', True):
|
if self._downloader.params.get('youtube_include_dash_manifest', True):
|
||||||
|
dash_mpd_fatal = True
|
||||||
for dash_manifest_url in dash_mpds:
|
for dash_manifest_url in dash_mpds:
|
||||||
dash_formats = {}
|
dash_formats = {}
|
||||||
try:
|
try:
|
||||||
for df in self._parse_dash_manifest(
|
for df in self._parse_dash_manifest(
|
||||||
video_id, dash_manifest_url, player_url, age_gate):
|
video_id, dash_manifest_url, player_url, age_gate, dash_mpd_fatal):
|
||||||
# Do not overwrite DASH format found in some previous DASH manifest
|
# Do not overwrite DASH format found in some previous DASH manifest
|
||||||
if df['format_id'] not in dash_formats:
|
if df['format_id'] not in dash_formats:
|
||||||
dash_formats[df['format_id']] = df
|
dash_formats[df['format_id']] = df
|
||||||
|
# Additional DASH manifests may end up in HTTP Error 403 therefore
|
||||||
|
# allow them to fail without bug report message if we already have
|
||||||
|
# some DASH manifest succeeded. This is temporary workaround to reduce
|
||||||
|
# burst of bug reports until we figure out the reason and whether it
|
||||||
|
# can be fixed at all.
|
||||||
|
dash_mpd_fatal = False
|
||||||
except (ExtractorError, KeyError) as e:
|
except (ExtractorError, KeyError) as e:
|
||||||
self.report_warning(
|
self.report_warning(
|
||||||
'Skipping DASH manifest: %r' % e, video_id)
|
'Skipping DASH manifest: %r' % e, video_id)
|
||||||
|
|
Loading…
Reference in a new issue