From acbaf2ed1c577187b9586e2a3bd0d6b3697f08c7 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Wed, 12 Aug 2026 11:11:10 -0400 Subject: [PATCH] fix(download): keep .mp3 extension on the ffmpeg tag temp file ffmpeg infers the muxer from the extension; '.tag' made every download's tag step fail with 'Unable to choose an output format'. --- src/stores/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/download.ts b/src/stores/download.ts index 3989463..91da978 100644 --- a/src/stores/download.ts +++ b/src/stores/download.ts @@ -280,7 +280,7 @@ function createDownloadStore() { feedStore.feeds().find((f) => f.id === item.feedId)?.podcast.title ?? downloads().get(item.episodeId)?.podcastTitle; if (podcastTitle) { - const tmp = `${result.filePath}.tag`; + const tmp = `${result.filePath}.tag.mp3`; Bun.spawn([ "ffmpeg", "-y",