diff --git a/README.md b/README.md index b168e6f..acf009a 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ Radio streamer ([kawa](https://github.com/Luminarys/kawa) drop-in compatible). * Uses sample/timed packet buffers, instead of kawa byte buffers, which caused wild differences between endpoints. Mounts usually align within 0.2s of each other, depending on client. * Use `queue.buffer_size` to specify number of seconds to buffer (by default 0, automatic per client). * Implements `queue.nr` and `/random` (to be deprecated/changed) +* Supports max queue length via `queue.length` config. * Supports extra encoder bitrate control settings (CBR, VBR, auto, etc.) * Can read and apply ReplayGain tags, or normalize audio loudness. * Can have audio sources over HTTP(s) URLs on `path` property, and supports seeking. diff --git a/go.mod b/go.mod index c28657e..2516a33 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module git.gammaspectra.live/S.O.N.G/MeteorLight go 1.18 require ( - git.gammaspectra.live/S.O.N.G/Kirika v0.0.0-20220418201711-645b7673238b + git.gammaspectra.live/S.O.N.G/Kirika v0.0.0-20220420091114-96ac7c542e1c github.com/BurntSushi/toml v1.1.0 github.com/dhowden/tag v0.0.0-20201120070457-d52dcb253c63 github.com/enriquebris/goconcurrentqueue v0.6.3 diff --git a/go.sum b/go.sum index b1db1d5..50c24ac 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -git.gammaspectra.live/S.O.N.G/Kirika v0.0.0-20220418201711-645b7673238b h1:APN8N/p2mvancYjJbB72xPCNsV6nj51aD4TABBBj9xc= -git.gammaspectra.live/S.O.N.G/Kirika v0.0.0-20220418201711-645b7673238b/go.mod h1:fC6bNeZpHJ1d31ge1Vl9Wmkw4PWgfsFoztjRrTz5gKM= +git.gammaspectra.live/S.O.N.G/Kirika v0.0.0-20220420091114-96ac7c542e1c h1:Fdq1BxgngAsuG6eBEjEbbSmj+0WObHzpcPF9lIUS6X4= +git.gammaspectra.live/S.O.N.G/Kirika v0.0.0-20220420091114-96ac7c542e1c/go.mod h1:b4CDunrNuGaJrV56yRDywliIsbO2Ntrot8axTFjaHcw= git.gammaspectra.live/S.O.N.G/go-ebur128 v0.0.0-20220418202343-73a167e76255 h1:BWRx2ZFyhp5+rsXhdDZtk5Gld+L44lxlN9ASqB9Oj0M= git.gammaspectra.live/S.O.N.G/go-ebur128 v0.0.0-20220418202343-73a167e76255/go.mod h1:5H4eVW9uknpn8REFr+C3ejhvXdncgm/pbGqKGC43gFY= git.gammaspectra.live/S.O.N.G/go-fdkaac v0.0.0-20220417020459-7018d91e3eed h1:aJPCb3LS4Wai34S5bKUGgAm+/hPt0J2tvWPOl6RnbbE=