[dl:ytdl] fix postprocessing/merge errors (#7581)

don't use a hardcoded '.part' filename extension

fixes regression introduced in 29d315e495
This commit is contained in:
Mike Fährmann
2025-05-26 18:43:17 +02:00
parent 5ebea85bd1
commit a798b8971e

View File

@@ -134,17 +134,18 @@ class YoutubeDLDownloader(DownloaderBase):
self.out.start(pathfmt.path)
if self.part:
pathfmt.kwdict["extension"] = pathfmt.prefix + "part"
pathfmt.kwdict["extension"] = pathfmt.prefix
filename = pathfmt.build_filename(pathfmt.kwdict)
pathfmt.kwdict["extension"] = info_dict["ext"]
if self.partdir:
path = os.path.join(self.partdir, filename)
else:
path = pathfmt.realdirectory + filename
path = path.replace("%", "%%") + "%(ext)s"
else:
path = pathfmt.realpath
path = pathfmt.realpath.replace("%", "%%")
self._set_outtmpl(ytdl_instance, path.replace("%", "%%"))
self._set_outtmpl(ytdl_instance, path)
try:
ytdl_instance.process_info(info_dict)
except Exception as exc: