Force Source aspect default on snippets to prevent 16:9 drift

This commit is contained in:
Stu Leak 2025-12-09 01:28:33 -05:00
parent 8ffc8663a4
commit 510f739b85

View File

@ -6206,6 +6206,11 @@ func (s *appState) generateSnippet() {
"-i", src.Path,
}
// Ensure aspect defaults to Source for snippets when unset
if s.convert.OutputAspect == "" {
s.convert.OutputAspect = "Source"
}
// Add cover art if available
hasCoverArt := s.convert.CoverArtPath != ""
logging.Debug(logging.CatFFMPEG, "snippet: CoverArtPath=%s hasCoverArt=%v", s.convert.CoverArtPath, hasCoverArt)