fix(server): allow extra spaces in transcoding commands

This commit is contained in:
Deluan 2024-10-20 19:09:09 -04:00
parent bbb3182bc9
commit 8808eaddda
2 changed files with 5 additions and 1 deletions

View file

@ -171,7 +171,7 @@ func createProbeCommand(cmd string, inputs []string) []string {
}
func fixCmd(cmd string) []string {
split := strings.Split(cmd, " ")
split := strings.Fields(cmd)
cmdPath, _ := ffmpegCmd()
for i, s := range split {
if s == "ffmpeg" || s == "ffmpeg.exe" {