瀏覽代碼

Add more artist names to the splitting whitelist

MrTimscampi 4 年之前
父節點
當前提交
020c0fc4cb
共有 1 個文件被更改,包括 10 次插入1 次删除
  1. 10 1
      MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

+ 10 - 1
MediaBrowser.MediaEncoding/Probing/ProbeResultNormalizer.cs

@@ -39,7 +39,16 @@ namespace MediaBrowser.MediaEncoding.Probing
             _localization = localization;
         }
 
-        private IReadOnlyList<string> SplitWhitelist => _splitWhiteList ??= new string[] { "AC/DC" };
+        private IReadOnlyList<string> SplitWhitelist => _splitWhiteList ??= new string[]
+        {
+            "AC/DC",
+            "Au/Ra",
+            "이달의 소녀 1/3",
+            "LOONA 1/3",
+            "LOONA / yyxy",
+            "LOONA / ODD EYE CIRCLE",
+            "KD/A"
+        };
 
         public MediaInfo GetMediaInfo(InternalMediaInfoResult data, VideoType? videoType, bool isAudio, string path, MediaProtocol protocol)
         {