mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
package engine
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/astaxie/beego"
|
|
"github.com/deluan/gosonic/conf"
|
|
)
|
|
|
|
// TODO Encapsulate as a io.Reader
|
|
func Stream(path string, bitRate int, maxBitRate int, w io.Writer) error {
|
|
var f io.Reader
|
|
var err error
|
|
enabled := !conf.GoSonic.DisableDownsampling
|
|
if enabled && maxBitRate > 0 && bitRate > maxBitRate {
|
|
f, err = downsample(path, maxBitRate)
|
|
} else {
|
|
f, err = os.Open(path)
|
|
}
|
|
if err != nil {
|
|
beego.Error("Error opening file", path, ":", err)
|
|
return err
|
|
}
|
|
if _, err = io.Copy(w, f); err != nil {
|
|
beego.Error("Error copying file", path, ":", err)
|
|
return err
|
|
}
|
|
return err
|
|
}
|
|
|
|
func downsample(path string, maxBitRate int) (f io.Reader, err error) {
|
|
cmdLine, args := createDownsamplingCommand(path, maxBitRate)
|
|
|
|
beego.Debug("Executing cmd:", cmdLine, args)
|
|
cmd := exec.Command(cmdLine, args...)
|
|
cmd.Stderr = os.Stderr
|
|
if f, err = cmd.StdoutPipe(); err != nil {
|
|
return f, err
|
|
}
|
|
return f, cmd.Start()
|
|
}
|
|
|
|
func createDownsamplingCommand(path string, maxBitRate int) (string, []string) {
|
|
cmd := conf.GoSonic.DownsampleCommand
|
|
|
|
split := strings.Split(cmd, " ")
|
|
for i, s := range split {
|
|
s = strings.Replace(s, "%s", path, -1)
|
|
s = strings.Replace(s, "%b", strconv.Itoa(maxBitRate), -1)
|
|
split[i] = s
|
|
}
|
|
|
|
return split[0], split[1:]
|
|
}
|