diff options
| author | TelepathicWalrus <48514138+TelepathicWalrus@users.noreply.github.com> | 2023-05-15 12:12:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-15 13:12:24 +0200 |
| commit | 603fce59df780626c3269eaa94d95504e823b2f6 (patch) | |
| tree | 1042ce2f5e5459d14123b9810acba6a9c1752fd7 /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 47290a8c3665f3adb859bda19deb66f438f2e5d0 (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 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index adc7b2f95..1e868194e 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -129,6 +129,13 @@ namespace MediaBrowser.Controller.Entities public string Album { get; set; } /// <summary> + /// Gets or sets the LUFS value. + /// </summary> + /// <value>The LUFS Value.</value> + [JsonIgnore] + public float LUFS { get; set; } + + /// <summary> /// Gets or sets the channel identifier. /// </summary> /// <value>The channel identifier.</value> |
