diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2022-10-07 15:21:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 15:21:00 +0200 |
| commit | b137d0cc2bae86ffed23bdfcf6988c04a3b4d365 (patch) | |
| tree | d413e7029955e9b4dc603c6d772364ed4d3006df /Emby.Naming/Common | |
| parent | f3c1ca07604c17046ffdad365f600552e028ccdc (diff) | |
| parent | 9b2e9640be029482a5d168a0ddb2feac0185d7a2 (diff) | |
Merge pull request #7514 from Shadowghost/music-extend
Diffstat (limited to 'Emby.Naming/Common')
| -rw-r--r-- | Emby.Naming/Common/NamingOptions.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Emby.Naming/Common/NamingOptions.cs b/Emby.Naming/Common/NamingOptions.cs index 29cc6558c..a72e0ffc7 100644 --- a/Emby.Naming/Common/NamingOptions.cs +++ b/Emby.Naming/Common/NamingOptions.cs @@ -181,6 +181,24 @@ namespace Emby.Naming.Common "volume" }; + ArtistSubfolders = new[] + { + "albums", + "broadcasts", + "bootlegs", + "compilations", + "dj-mixes", + "eps", + "live", + "mixtapes", + "others", + "remixes", + "singles", + "soundtracks", + "spokenwords", + "streets" + }; + AudioFileExtensions = new[] { ".669", @@ -745,6 +763,11 @@ namespace Emby.Naming.Common public string[] AlbumStackingPrefixes { get; set; } /// <summary> + /// Gets or sets list of artist subfolders. + /// </summary> + public string[] ArtistSubfolders { get; set; } + + /// <summary> /// Gets or sets list of subtitle file extensions. /// </summary> public string[] SubtitleFileExtensions { get; set; } |
