Browse Source

Default EnableAudioVbrEncoding to true in TranscodingProfile

This will match the old behavior when user takes no action for clients

Signed-off-by: gnattu <gnattuoc@me.com>
gnattu 1 year ago
parent
commit
7ad432be23
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Model/Dlna/TranscodingProfile.cs

+ 1 - 1
MediaBrowser.Model/Dlna/TranscodingProfile.cs

@@ -72,7 +72,7 @@ namespace MediaBrowser.Model.Dlna
 
         [DefaultValue(true)]
         [XmlAttribute("enableAudioVbrEncoding")]
-        public bool EnableAudioVbrEncoding { get; set; }
+        public bool EnableAudioVbrEncoding { get; set; } = true;
 
         public string[] GetAudioCodecs()
         {