mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Call ffmpeg
in batches
This commit is contained in:
parent
6a3dabbb06
commit
3190611ec8
4 changed files with 75 additions and 36 deletions
|
@ -38,3 +38,17 @@ func MoveString(array []string, srcIndex int, dstIndex int) []string {
|
|||
value := array[srcIndex]
|
||||
return InsertString(RemoveString(array, srcIndex), value, dstIndex)
|
||||
}
|
||||
|
||||
func BreakUpStringSlice(mediaFileIds []string, chunkSize int) [][]string {
|
||||
numTracks := len(mediaFileIds)
|
||||
var chunks [][]string
|
||||
for i := 0; i < numTracks; i += chunkSize {
|
||||
end := i + chunkSize
|
||||
if end > numTracks {
|
||||
end = numTracks
|
||||
}
|
||||
|
||||
chunks = append(chunks, mediaFileIds[i:end])
|
||||
}
|
||||
return chunks
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue