Explorar o código

Remove superfluous "SoundHandler" from audio stream names

GermanCoding %!s(int64=3) %!d(string=hai) anos
pai
achega
11bb834957

+ 2 - 2
MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

@@ -691,9 +691,9 @@ namespace MediaBrowser.MediaEncoding.Probing
 
 
                 if (string.IsNullOrEmpty(stream.Title))
                 if (string.IsNullOrEmpty(stream.Title))
                 {
                 {
-                    // mp4 missing track title workaround: fall back to handler_name if populated
+                    // mp4 missing track title workaround: fall back to handler_name if populated and not the default "SoundHandler"
                     string handlerName = GetDictionaryValue(streamInfo.Tags, "handler_name");
                     string handlerName = GetDictionaryValue(streamInfo.Tags, "handler_name");
-                    if (!string.IsNullOrEmpty(handlerName))
+                    if (!string.IsNullOrEmpty(handlerName) && !string.Equals(handlerName, "SoundHandler", StringComparison.OrdinalIgnoreCase))
                     {
                     {
                         stream.Title = handlerName;
                         stream.Title = handlerName;
                     }
                     }