Add support for OpenSubsonic enhanced lyrics (#2208)

This commit is contained in:
Jeff
2026-07-09 21:32:05 -07:00
committed by GitHub
parent 0c89fea1ea
commit 355b19c1cb
55 changed files with 4213 additions and 480 deletions
@@ -956,7 +956,10 @@ export const JellyfinController: InternalControllerEndpoint = {
return res.body.Lyrics.map((lyric) => lyric.Text).join('\n');
}
return res.body.Lyrics.map((lyric) => [lyric.Start! / 1e4, lyric.Text]);
return res.body.Lyrics.map((lyric) => ({
startMs: lyric.Start! / 1e4,
text: lyric.Text,
}));
},
getMusicFolderList: async (args) => {
const { apiClientProps } = args;