mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Hack to make streaming work, but with wrong content-length
This commit is contained in:
parent
972d1c04bc
commit
42f3279aaf
2 changed files with 13 additions and 9 deletions
|
@ -1,8 +1,6 @@
|
|||
package api
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
|
||||
"github.com/astaxie/beego"
|
||||
"github.com/deluan/gosonic/api/responses"
|
||||
"github.com/deluan/gosonic/domain"
|
||||
|
@ -46,16 +44,22 @@ func (c *StreamController) Stream() {
|
|||
beego.Debug("Streaming file", c.id, ":", c.mf.Path)
|
||||
beego.Debug("Bitrate", c.mf.BitRate, "MaxBitRate", maxBitRate)
|
||||
|
||||
contentLength := c.mf.Size
|
||||
if maxBitRate > 0 {
|
||||
contentLength = strconv.Itoa((c.mf.Duration + 1) * maxBitRate * 1000 / 8)
|
||||
}
|
||||
c.Ctx.Output.Header("Content-Length", contentLength)
|
||||
// TODO Send proper estimated content-length
|
||||
//contentLength := c.mf.Size
|
||||
//if maxBitRate > 0 {
|
||||
// contentLength = strconv.Itoa((c.mf.Duration + 1) * maxBitRate * 1000 / 8)
|
||||
//}
|
||||
c.Ctx.Output.Header("Content-Length", c.mf.Size)
|
||||
c.Ctx.Output.Header("Content-Type", "audio/mpeg")
|
||||
c.Ctx.Output.Header("Expires", "0")
|
||||
c.Ctx.Output.Header("Cache-Control", "must-revalidate")
|
||||
c.Ctx.Output.Header("Pragma", "public")
|
||||
|
||||
if c.Ctx.Request.Method == "HEAD" {
|
||||
beego.Debug("Just a HEAD. Not streaming", c.mf.Path)
|
||||
return
|
||||
}
|
||||
|
||||
err := engine.Stream(c.mf.Path, c.mf.BitRate, maxBitRate, c.Ctx.ResponseWriter)
|
||||
if err != nil {
|
||||
beego.Error("Error streaming file", c.id, ":", err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue