mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
Removed now-unneeded thumbnail/subtitle return values
This commit is contained in:
parent
9c3b227db8
commit
0a3c5aceb5
1 changed files with 0 additions and 29 deletions
|
@ -4282,12 +4282,6 @@ def _write_subtitles(self, info_dict, filename):
|
||||||
if existing_sub:
|
if existing_sub:
|
||||||
self.to_screen(f'[info] Video subtitle {sub_lang}.{sub_format} is already present')
|
self.to_screen(f'[info] Video subtitle {sub_lang}.{sub_format} is already present')
|
||||||
sub_info['filepath'] = existing_sub
|
sub_info['filepath'] = existing_sub
|
||||||
ret.append({
|
|
||||||
'current_filepath': existing_sub,
|
|
||||||
'final_filepath': sub_filename_final,
|
|
||||||
'lang': sub_lang,
|
|
||||||
'ext': sub_info['ext']
|
|
||||||
})
|
|
||||||
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
@ -4299,12 +4293,6 @@ def _write_subtitles(self, info_dict, filename):
|
||||||
with open(sub_filename, 'w', encoding='utf-8', newline='') as subfile:
|
with open(sub_filename, 'w', encoding='utf-8', newline='') as subfile:
|
||||||
subfile.write(sub_info['data'])
|
subfile.write(sub_info['data'])
|
||||||
sub_info['filepath'] = sub_filename
|
sub_info['filepath'] = sub_filename
|
||||||
ret.append({
|
|
||||||
'current_filepath': sub_filename,
|
|
||||||
'final_filepath': sub_filename_final,
|
|
||||||
'lang': sub_lang,
|
|
||||||
'ext': sub_info['ext']
|
|
||||||
})
|
|
||||||
|
|
||||||
continue
|
continue
|
||||||
except OSError:
|
except OSError:
|
||||||
|
@ -4316,12 +4304,6 @@ def _write_subtitles(self, info_dict, filename):
|
||||||
sub_copy.setdefault('http_headers', info_dict.get('http_headers'))
|
sub_copy.setdefault('http_headers', info_dict.get('http_headers'))
|
||||||
self.dl(sub_filename, sub_copy, subtitle=True)
|
self.dl(sub_filename, sub_copy, subtitle=True)
|
||||||
sub_info['filepath'] = sub_filename
|
sub_info['filepath'] = sub_filename
|
||||||
ret.append({
|
|
||||||
'current_filepath': sub_filename,
|
|
||||||
'final_filepath': sub_filename_final,
|
|
||||||
'lang': sub_lang,
|
|
||||||
'ext': sub_info['ext']
|
|
||||||
})
|
|
||||||
|
|
||||||
except (DownloadError, ExtractorError, IOError, OSError, ValueError) + network_exceptions as err:
|
except (DownloadError, ExtractorError, IOError, OSError, ValueError) + network_exceptions as err:
|
||||||
msg = f'Unable to download video subtitles for {sub_lang!r}: {err}'
|
msg = f'Unable to download video subtitles for {sub_lang!r}: {err}'
|
||||||
|
@ -4363,11 +4345,6 @@ def _write_thumbnails(self, label, info_dict, filename, thumb_filename_base=None
|
||||||
self.to_screen('[info] %s is already present' % (
|
self.to_screen('[info] %s is already present' % (
|
||||||
thumb_display_id if multiple else f'{label} thumbnail').capitalize())
|
thumb_display_id if multiple else f'{label} thumbnail').capitalize())
|
||||||
t['filepath'] = existing_thumb
|
t['filepath'] = existing_thumb
|
||||||
ret.append({
|
|
||||||
'current_filepath': existing_thumb,
|
|
||||||
'final_filepath': thumb_filename_final,
|
|
||||||
'id': t['id']
|
|
||||||
})
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
self.to_screen(f'[info] Downloading {thumb_display_id} ...')
|
self.to_screen(f'[info] Downloading {thumb_display_id} ...')
|
||||||
|
@ -4377,12 +4354,6 @@ def _write_thumbnails(self, label, info_dict, filename, thumb_filename_base=None
|
||||||
with open(encodeFilename(thumb_filename), 'wb') as thumbf:
|
with open(encodeFilename(thumb_filename), 'wb') as thumbf:
|
||||||
shutil.copyfileobj(uf, thumbf)
|
shutil.copyfileobj(uf, thumbf)
|
||||||
|
|
||||||
ret.append({
|
|
||||||
'current_filepath': thumb_filename,
|
|
||||||
'final_filepath': thumb_filename_final,
|
|
||||||
'id': t['id']
|
|
||||||
})
|
|
||||||
|
|
||||||
t['filepath'] = thumb_filename
|
t['filepath'] = thumb_filename
|
||||||
except network_exceptions as err:
|
except network_exceptions as err:
|
||||||
if isinstance(err, HTTPError) and err.status == 404:
|
if isinstance(err, HTTPError) and err.status == 404:
|
||||||
|
|
Loading…
Reference in a new issue