mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 02:13:33 +00:00
Replaygain support for Web Player (#243)
* replaygain! * resume context * don't fire both players * replaygain for jellyfin * actually remove console.log --------- Co-authored-by: Jeff <42182408+jeffvli@users.noreply.github.com> Co-authored-by: jeffvli <jeffvictorli@gmail.com>
This commit is contained in:
parent
fd264daffc
commit
65f28bb9dc
10 changed files with 190 additions and 17 deletions
|
|
@ -68,6 +68,7 @@ const normalizeSong = (
|
|||
createdAt: item.created,
|
||||
discNumber: item.discNumber || 1,
|
||||
duration: item.duration || 0,
|
||||
gain: null,
|
||||
genres: item.genre
|
||||
? [
|
||||
{
|
||||
|
|
@ -86,6 +87,7 @@ const normalizeSong = (
|
|||
lyrics: null,
|
||||
name: item.title,
|
||||
path: item.path,
|
||||
peak: null,
|
||||
playCount: item?.playCount || 0,
|
||||
releaseDate: null,
|
||||
releaseYear: item.year ? String(item.year) : null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue