aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Dto
diff options
context:
space:
mode:
authorTelepathicWalrus <48514138+TelepathicWalrus@users.noreply.github.com>2023-05-15 12:12:24 +0100
committerGitHub <noreply@github.com>2023-05-15 13:12:24 +0200
commit603fce59df780626c3269eaa94d95504e823b2f6 (patch)
tree1042ce2f5e5459d14123b9810acba6a9c1752fd7 /Emby.Server.Implementations/Dto
parent47290a8c3665f3adb859bda19deb66f438f2e5d0 (diff)
Audio normalization (#9222)
Co-authored-by: Joe Rogers <1337joe@users.noreply.github.com> Co-authored-by: Bond-009 <bond.009@outlook.com>
Diffstat (limited to 'Emby.Server.Implementations/Dto')
-rw-r--r--Emby.Server.Implementations/Dto/DtoService.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs
index 8fa2f05662..7a6ed2cb80 100644
--- a/Emby.Server.Implementations/Dto/DtoService.cs
+++ b/Emby.Server.Implementations/Dto/DtoService.cs
@@ -906,6 +906,7 @@ namespace Emby.Server.Implementations.Dto
// Add audio info
if (item is Audio audio)
{
+ dto.LUFS = audio.LUFS;
dto.Album = audio.Album;
if (audio.ExtraType.HasValue)
{