mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Small changes to stream.view endpoint
Always send content-length header
This commit is contained in:
parent
78ed8bd4d9
commit
76deb2f5bb
2 changed files with 28 additions and 23 deletions
|
@ -46,9 +46,11 @@ 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 {
|
||||
c.Ctx.Output.Header("Content-Length", strconv.Itoa((c.mf.Duration+1)*maxBitRate*1000/8))
|
||||
contentLength = strconv.Itoa((c.mf.Duration + 1) * maxBitRate * 1000 / 8)
|
||||
}
|
||||
c.Ctx.Output.Header("Content-Length", contentLength)
|
||||
c.Ctx.Output.Header("Content-Type", "audio/mpeg")
|
||||
c.Ctx.Output.Header("Expires", "0")
|
||||
c.Ctx.Output.Header("Cache-Control", "must-revalidate")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue