mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #6280 from MrTimscampi/audio-exceptions
Add more artist names to the splitting whitelist
This commit is contained in:
commit
61141314e8
@ -39,7 +39,16 @@ namespace MediaBrowser.MediaEncoding.Probing
|
|||||||
_localization = localization;
|
_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)
|
public MediaInfo GetMediaInfo(InternalMediaInfoResult data, VideoType? videoType, bool isAudio, string path, MediaProtocol protocol)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user