Explorar el Código

update embedded metadata extraction

Luke Pulverenti hace 9 años
padre
commit
324c6dc8db
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs

+ 5 - 1
MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs

@@ -444,7 +444,11 @@ namespace MediaBrowser.Providers.MediaInfo
             {
                 if (string.IsNullOrWhiteSpace(video.Name) || string.Equals(video.Name, Path.GetFileNameWithoutExtension(video.Path), StringComparison.OrdinalIgnoreCase))
                 {
-                    video.Name = data.Name;
+                    // Don't use the embedded name for extras because it will often be the same name as the movie
+                    if (!video.ExtraType.HasValue && !video.IsOwnedItem)
+                    {
+                        video.Name = data.Name;
+                    }
                 }
             }