mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-23 23:20:57 +03:00
feat: transcoding info in responses, to enable Jamstash to play transcoded FLAC. hardcoded for now
This commit is contained in:
parent
fd5548f890
commit
6dfe56c1c4
@ -2,6 +2,7 @@ package subsonic
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"mime"
|
||||
"net/http"
|
||||
"strconv"
|
||||
"strings"
|
||||
@ -200,6 +201,9 @@ func ToChild(entry engine.Entry) responses.Child {
|
||||
child.Type = entry.Type
|
||||
child.UserRating = entry.UserRating
|
||||
child.SongCount = entry.SongCount
|
||||
// TODO Must be dynamic, based on player/transcoding config
|
||||
child.TranscodedSuffix = "mp3"
|
||||
child.TranscodedContentType = mime.TypeByExtension(".mp3")
|
||||
return child
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user