mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
fix(server): allow extra spaces in transcoding commands
This commit is contained in:
parent
bbb3182bc9
commit
8808eaddda
2 changed files with 5 additions and 1 deletions
|
@ -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" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue