Force Source aspect default on snippets to prevent 16:9 drift
This commit is contained in:
parent
d6c4f5da29
commit
4515793f5e
5
main.go
5
main.go
|
|
@ -6206,6 +6206,11 @@ func (s *appState) generateSnippet() {
|
||||||
"-i", src.Path,
|
"-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
|
// Add cover art if available
|
||||||
hasCoverArt := s.convert.CoverArtPath != ""
|
hasCoverArt := s.convert.CoverArtPath != ""
|
||||||
logging.Debug(logging.CatFFMPEG, "snippet: CoverArtPath=%s hasCoverArt=%v", s.convert.CoverArtPath, hasCoverArt)
|
logging.Debug(logging.CatFFMPEG, "snippet: CoverArtPath=%s hasCoverArt=%v", s.convert.CoverArtPath, hasCoverArt)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user