1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-12-28 18:41:30 +00:00

Fixed embedding filepath issue for subs and infojson

This commit is contained in:
Kieran Eglin
2024-04-26 16:16:56 -07:00
parent 3046c17822
commit 6c8ede8188
3 changed files with 7 additions and 2 deletions

View File

@@ -3697,7 +3697,7 @@ class YoutubeDL:
info['filepath'] = filename
info = self.run_all_pps('post_process', info, additional_pps=info.get('__postprocessors'))
info = self.run_pp(MoveFilesAfterDownloadPP(self), info)
del info['__multiple_thumbnails']
info.pop('__multiple_thumbnails', None)
return self.run_all_pps('after_move', info)
def _make_archive_id(self, info_dict):