mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 12:54:38 +03:00
Remove ChunkDuration warning (#2346)
ChunkDuration is only used in preview generation, and is already validated there.
This commit is contained in:
@@ -114,15 +114,12 @@ func (g *GeneratorInfo) configure() error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// #2250 - ensure ChunkCount and ChunkDuration are valid
|
// #2250 - ensure ChunkCount is valid
|
||||||
if g.ChunkCount < 1 {
|
if g.ChunkCount < 1 {
|
||||||
logger.Warnf("[generator] Segment count (%d) must be > 0. Using 1 instead.", g.ChunkCount)
|
logger.Warnf("[generator] Segment count (%d) must be > 0. Using 1 instead.", g.ChunkCount)
|
||||||
g.ChunkCount = 1
|
g.ChunkCount = 1
|
||||||
}
|
}
|
||||||
if g.ChunkDuration < 0.75 {
|
|
||||||
logger.Warnf("[generator] Segment duration (%f) must be >= 0.75. Using 0.75 instead.", g.ChunkDuration)
|
|
||||||
g.ChunkDuration = 0.75
|
|
||||||
}
|
|
||||||
g.NthFrame = g.NumberOfFrames / g.ChunkCount
|
g.NthFrame = g.NumberOfFrames / g.ChunkCount
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
Reference in New Issue
Block a user