Default output name to -convert suffix
This commit is contained in:
parent
8420afb000
commit
b2fe80062e
3
main.go
3
main.go
|
|
@ -1654,7 +1654,8 @@ func (s *appState) loadVideo(path string) {
|
||||||
s.currentFrame = ""
|
s.currentFrame = ""
|
||||||
}
|
}
|
||||||
s.applyInverseDefaults(src)
|
s.applyInverseDefaults(src)
|
||||||
s.convert.OutputBase = strings.TrimSuffix(src.DisplayName, filepath.Ext(src.DisplayName))
|
base := strings.TrimSuffix(src.DisplayName, filepath.Ext(src.DisplayName))
|
||||||
|
s.convert.OutputBase = base + "-convert"
|
||||||
s.convert.CoverArtPath = ""
|
s.convert.CoverArtPath = ""
|
||||||
s.convert.AspectHandling = "Auto"
|
s.convert.AspectHandling = "Auto"
|
||||||
s.playerReady = false
|
s.playerReady = false
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user