Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
56cfdb5e17 tweak video curve 2026-01-11 19:42:16 -03:00
474ae1479c Merge pull request 'convert to go' (#3) from convert-go into mistress
Reviewed-on: #3
2026-01-11 22:32:28 +00:00

View file

@ -198,14 +198,14 @@ func getFrameSkipSeconds(totalSeconds int) int {
case totalSeconds <= 60: case totalSeconds <= 60:
return 5 return 5
case totalSeconds <= 120: case totalSeconds <= 120:
return 10 return 7
case totalSeconds <= 300: case totalSeconds <= 300:
return 12 return 10
case totalSeconds <= 1000: case totalSeconds <= 1000:
return 15 return 15
case totalSeconds <= 1200: case totalSeconds <= 1200:
return 40 return 20
default: default:
return 60 return 26
} }
} }