From e1c54a3484c41b38e0038f649a1d2ecd629b819c Mon Sep 17 00:00:00 2001 From: Serge Tkatchouk Date: Mon, 2 Mar 2020 19:07:02 +0800 Subject: [PATCH] Fix Bitrate type mismatch --- server/ctrlsubsonic/encode/encode.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/ctrlsubsonic/encode/encode.go b/server/ctrlsubsonic/encode/encode.go index 79821fc..be5d393 100644 --- a/server/ctrlsubsonic/encode/encode.go +++ b/server/ctrlsubsonic/encode/encode.go @@ -15,7 +15,7 @@ import ( type Profile struct { Format string - Bitrate string + Bitrate int ffmpegOptions []string forceRG bool }