From c5124e4b29eaa9a8d5c8e3de9bf27a1e5e3502ee Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 30 Nov 2025 01:02:48 -0500 Subject: [PATCH] Skip cover art for DVD targets to avoid mux errors --- main.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/main.go b/main.go index 40fc6de..6c8eb4a 100644 --- a/main.go +++ b/main.go @@ -893,6 +893,10 @@ func (s *appState) executeConvertJob(ctx context.Context, job *queue.Job, progre // Add cover art if available coverArtPath, _ := cfg["coverArtPath"].(string) hasCoverArt := coverArtPath != "" + if isDVD { + // DVD targets do not support attached cover art + hasCoverArt = false + } if hasCoverArt { args = append(args, "-i", coverArtPath) } @@ -3525,6 +3529,10 @@ func (s *appState) startConvert(status *widget.Label, btn, cancelBtn *widget.But // Add cover art if available hasCoverArt := cfg.CoverArtPath != "" + if isDVD { + // DVD targets do not support attached cover art + hasCoverArt = false + } if hasCoverArt { args = append(args, "-i", cfg.CoverArtPath) }