diff options
| author | Cody Robibero <cody@robibe.ro> | 2024-04-30 13:15:51 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-30 13:15:51 -0600 |
| commit | 48bb16472f7ed62ee74c98a51dea3bf3ee135de2 (patch) | |
| tree | 0dff8fb5e9c010aca0fb12ab4887e8b18823b832 /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 74f3e54807ab306897f592c57478cd28b96280d2 (diff) | |
| parent | 9ffb07d67fd7d2c08cafff9081f38faac51b7e43 (diff) | |
Merge pull request #11457 from Bond-009/audionormalization
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 474b093d5..adbbbaa03 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -138,6 +138,13 @@ namespace MediaBrowser.Controller.Entities public float? LUFS { get; set; } /// <summary> + /// Gets or sets the gain required for audio normalization. + /// </summary> + /// <value>The gain required for audio normalization.</value> + [JsonIgnore] + public float? NormalizationGain { get; set; } + + /// <summary> /// Gets or sets the channel identifier. /// </summary> /// <value>The channel identifier.</value> |
